12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.TrackingModule
- {
-
-
- public class TrackerMOSSE : Tracker
- {
- protected override void Dispose (bool disposing)
- {
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- tracking_TrackerMOSSE_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose (disposing);
- }
- #else
- return;
- #endif
- }
- protected internal TrackerMOSSE (IntPtr addr) : base (addr) { }
-
- public static new TrackerMOSSE __fromPtr__ (IntPtr addr) { return new TrackerMOSSE (addr); }
-
-
-
-
- public static TrackerMOSSE create ()
- {
- #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
-
- TrackerMOSSE retVal = TrackerMOSSE.__fromPtr__(tracking_TrackerMOSSE_create_10());
-
- return retVal;
- #else
- return null;
- #endif
- }
- #if (UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR
- const string LIBNAME = "__Internal";
- #else
- const string LIBNAME = "opencvforunity";
- #endif
-
- [DllImport (LIBNAME)]
- private static extern IntPtr tracking_TrackerMOSSE_create_10 ();
-
- [DllImport (LIBNAME)]
- private static extern void tracking_TrackerMOSSE_delete (IntPtr nativeObj);
- }
- }
|