void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SuperpixelLSC)) { LogError("owner is not initialized. Add Action \"newSuperpixelLSC\"."); return; } OpenCVForUnity.XimgprocModule.SuperpixelLSC wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SuperpixelLSC, OpenCVForUnity.XimgprocModule.SuperpixelLSC>(owner); wrapped_owner.enforceLabelConnectivity(); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SuperpixelLSC)) { LogError("owner is not initialized. Add Action \"newSuperpixelLSC\"."); return; } OpenCVForUnity.XimgprocModule.SuperpixelLSC wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SuperpixelLSC, OpenCVForUnity.XimgprocModule.SuperpixelLSC>(owner); storeResult.Value = wrapped_owner.getNumberOfSuperpixels(); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.SuperpixelLSC)) { LogError("owner is not initialized. Add Action \"newSuperpixelLSC\"."); return; } OpenCVForUnity.XimgprocModule.SuperpixelLSC wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.SuperpixelLSC, OpenCVForUnity.XimgprocModule.SuperpixelLSC>(owner); if (!(image.Value is OpenCVForUnityPlayMakerActions.Mat)) { LogError("image is not initialized. Add Action \"newMat\"."); return; } OpenCVForUnity.CoreModule.Mat wrapped_image = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Mat, OpenCVForUnity.CoreModule.Mat>(image); wrapped_owner.getLabelContourMask(wrapped_image); }