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

            storeResult.Value = wrapped_owner.getTrackingScore();
        }
Esempio n. 2
0
 public TrackerDaSiamRPN(OpenCVForUnity.VideoModule.TrackerDaSiamRPN nativeObj) : base(nativeObj)
 {
 }