void DoProcess()
        {
            if (!(owner.Value is OpenCVForUnityPlayMakerActions.AdaptiveManifoldFilter))
            {
                LogError("owner is not initialized. Add Action \"newAdaptiveManifoldFilter\".");
                return;
            }
            OpenCVForUnity.XimgprocModule.AdaptiveManifoldFilter wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.AdaptiveManifoldFilter, OpenCVForUnity.XimgprocModule.AdaptiveManifoldFilter>(owner);

            if (!(src.Value is OpenCVForUnityPlayMakerActions.Mat))
            {
                LogError("src is not initialized. Add Action \"newMat\".");
                return;
            }
            OpenCVForUnity.CoreModule.Mat wrapped_src = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Mat, OpenCVForUnity.CoreModule.Mat>(src);

            if (!(dst.Value is OpenCVForUnityPlayMakerActions.Mat))
            {
                LogError("dst is not initialized. Add Action \"newMat\".");
                return;
            }
            OpenCVForUnity.CoreModule.Mat wrapped_dst = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Mat, OpenCVForUnity.CoreModule.Mat>(dst);

            wrapped_owner.filter(wrapped_src, wrapped_dst);
        }
        void DoProcess()
        {
            if (!(owner.Value is OpenCVForUnityPlayMakerActions.AdaptiveManifoldFilter))
            {
                LogError("owner is not initialized. Add Action \"newAdaptiveManifoldFilter\".");
                return;
            }
            OpenCVForUnity.XimgprocModule.AdaptiveManifoldFilter wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.AdaptiveManifoldFilter, OpenCVForUnity.XimgprocModule.AdaptiveManifoldFilter>(owner);

            wrapped_owner.collectGarbage();
        }
 public AdaptiveManifoldFilter(OpenCVForUnity.XimgprocModule.AdaptiveManifoldFilter nativeObj) : base(nativeObj)
 {
 }
        //
        // C++: static Ptr_AdaptiveManifoldFilter cv::ximgproc::AdaptiveManifoldFilter::create()
        //

        public static AdaptiveManifoldFilter create()
        {
            return(AdaptiveManifoldFilter.__fromPtr__(ximgproc_AdaptiveManifoldFilter_create_10()));
        }