using OpenCVForUnity.CoreModule; using OpenCVForUnity.UtilsModule; using System; using System.Collections.Generic; using System.Runtime.InteropServices; namespace OpenCVForUnity.OptflowModule { // C++: class GPCTree //javadoc: GPCTree public class GPCTree : Algorithm { protected override void Dispose(bool disposing) { #if (UNITY_ANDROID && !UNITY_EDITOR) try { if (disposing) { } if (IsEnabledDispose) { if (nativeObj != IntPtr.Zero) optflow_GPCTree_delete(nativeObj); nativeObj = IntPtr.Zero; } } finally { base.Dispose(disposing); } #else return; #endif } protected internal GPCTree(IntPtr addr) : base(addr) { } // internal usage only public static new GPCTree __fromPtr__(IntPtr addr) { return new GPCTree(addr); } #if (UNITY_ANDROID && !UNITY_EDITOR) const string LIBNAME = "opencvforunity"; // native support for java finalize() [DllImport(LIBNAME)] private static extern void optflow_GPCTree_delete(IntPtr nativeObj); #endif } }