//javadoc: SparsePyrLKOpticalFlow::create(winSize) public static SparsePyrLKOpticalFlow create(Size winSize) { #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER SparsePyrLKOpticalFlow retVal = SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_14(winSize.width, winSize.height)); return(retVal); #else return(null); #endif }
//javadoc: SparsePyrLKOpticalFlow::create(winSize, maxLevel, crit) public static SparsePyrLKOpticalFlow create(Size winSize, int maxLevel, TermCriteria crit) { #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER SparsePyrLKOpticalFlow retVal = SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_12(winSize.width, winSize.height, maxLevel, crit.type, crit.maxCount, crit.epsilon)); return(retVal); #else return(null); #endif }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); wrapped_owner.setMinEigThreshold((float)minEigThreshold.Value); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); wrapped_owner.setTermCriteria(new OpenCVForUnity.CoreModule.TermCriteria((int)crit_type.Value, (int)crit_maxCount.Value, (double)crit_epsilon.Value)); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); wrapped_owner.setWinSize(new OpenCVForUnity.CoreModule.Size((double)winSize_width.Value, (double)winSize_height.Value)); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); storeResult.Value = wrapped_owner.getFlags(); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); if (!(storeResult.Value is OpenCVForUnityPlayMakerActions.Double)) { storeResult.Value = new OpenCVForUnityPlayMakerActions.Double(); } ((OpenCVForUnityPlayMakerActions.Double)storeResult.Value).wrappedObject = wrapped_owner.getMinEigThreshold(); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); if (!(winSize.Value is OpenCVForUnityPlayMakerActions.Size)) { LogError("winSize is not initialized. Add Action \"newSize\"."); return; } OpenCVForUnity.CoreModule.Size wrapped_winSize = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Size, OpenCVForUnity.CoreModule.Size>(winSize); wrapped_owner.setWinSize(wrapped_winSize); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow)) { LogError("owner is not initialized. Add Action \"newSparsePyrLKOpticalFlow\"."); return; } OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SparsePyrLKOpticalFlow, OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow>(owner); if (!(crit.Value is OpenCVForUnityPlayMakerActions.TermCriteria)) { LogError("crit is not initialized. Add Action \"newTermCriteria\"."); return; } OpenCVForUnity.CoreModule.TermCriteria wrapped_crit = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.TermCriteria, OpenCVForUnity.CoreModule.TermCriteria>(crit); wrapped_owner.setTermCriteria(wrapped_crit); }
public SparsePyrLKOpticalFlow(OpenCVForUnity.VideoModule.SparsePyrLKOpticalFlow nativeObj) : base(nativeObj) { }
public static SparsePyrLKOpticalFlow create() { return(SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_15())); }
public static SparsePyrLKOpticalFlow create(Size winSize) { return(SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_14(winSize.width, winSize.height))); }
public static SparsePyrLKOpticalFlow create(Size winSize, int maxLevel) { return(SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_13(winSize.width, winSize.height, maxLevel))); }
public static SparsePyrLKOpticalFlow create(Size winSize, int maxLevel, TermCriteria crit) { return(SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_12(winSize.width, winSize.height, maxLevel, crit.type, crit.maxCount, crit.epsilon))); }
// // C++: static Ptr_SparsePyrLKOpticalFlow cv::SparsePyrLKOpticalFlow::create(Size winSize = Size(21, 21), int maxLevel = 3, TermCriteria crit = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags = 0, double minEigThreshold = 1e-4) // public static SparsePyrLKOpticalFlow create(Size winSize, int maxLevel, TermCriteria crit, int flags, double minEigThreshold) { return(SparsePyrLKOpticalFlow.__fromPtr__(video_SparsePyrLKOpticalFlow_create_10(winSize.width, winSize.height, maxLevel, crit.type, crit.maxCount, crit.epsilon, flags, minEigThreshold))); }