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