void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.Model)) { LogError("owner is not initialized. Add Action \"newModel\"."); return; } OpenCVForUnity.DnnModule.Model wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Model, OpenCVForUnity.DnnModule.Model>(owner); if (!(scale.Value is OpenCVForUnityPlayMakerActions.Double)) { LogError("scale is not initialized. Add Action \"newDouble\"."); return; } System.Double wrapped_scale = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Double, System.Double>(scale); if (!(size.Value is OpenCVForUnityPlayMakerActions.Size)) { LogError("size is not initialized. Add Action \"newSize\"."); return; } OpenCVForUnity.CoreModule.Size wrapped_size = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Size, OpenCVForUnity.CoreModule.Size>(size); if (!(mean.Value is OpenCVForUnityPlayMakerActions.Scalar)) { LogError("mean is not initialized. Add Action \"newScalar\"."); return; } OpenCVForUnity.CoreModule.Scalar wrapped_mean = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Scalar, OpenCVForUnity.CoreModule.Scalar>(mean); wrapped_owner.setInputParams(wrapped_scale, wrapped_size, wrapped_mean, swapRB.Value); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.Model)) { LogError("owner is not initialized. Add Action \"newModel\"."); return; } OpenCVForUnity.DnnModule.Model wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Model, OpenCVForUnity.DnnModule.Model>(owner); wrapped_owner.setInputParams((float)scale.Value, new OpenCVForUnity.CoreModule.Size((double)size_width.Value, (double)size_height.Value), new OpenCVForUnity.CoreModule.Scalar((double)mean_v0.Value, (double)mean_v1.Value, (double)mean_v2.Value, (double)mean_v3.Value), swapRB.Value, crop.Value); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.Model)) { LogError("owner is not initialized. Add Action \"newModel\"."); return; } OpenCVForUnity.DnnModule.Model wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Model, OpenCVForUnity.DnnModule.Model>(owner); wrapped_owner.setInputParams(); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.Model)) { LogError("owner is not initialized. Add Action \"newModel\"."); return; } OpenCVForUnity.DnnModule.Model wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Model, OpenCVForUnity.DnnModule.Model>(owner); if (!(size.Value is OpenCVForUnityPlayMakerActions.Size)) { LogError("size is not initialized. Add Action \"newSize\"."); return; } OpenCVForUnity.CoreModule.Size wrapped_size = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Size, OpenCVForUnity.CoreModule.Size>(size); wrapped_owner.setInputParams((float)scale.Value, wrapped_size); }
void DoProcess() { if (!(owner.Value is OpenCVForUnityPlayMakerActions.Model)) { LogError("owner is not initialized. Add Action \"newModel\"."); return; } OpenCVForUnity.DnnModule.Model wrapped_owner = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Model, OpenCVForUnity.DnnModule.Model>(owner); if (!(scale.Value is OpenCVForUnityPlayMakerActions.Double)) { LogError("scale is not initialized. Add Action \"newDouble\"."); return; } System.Double wrapped_scale = OpenCVForUnityPlayMakerActionsUtils.GetWrappedObject <OpenCVForUnityPlayMakerActions.Double, System.Double>(scale); wrapped_owner.setInputParams(wrapped_scale, new OpenCVForUnity.CoreModule.Size((double)size_width.Value, (double)size_height.Value)); }