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