246 lines
7.2 KiB
C#
246 lines
7.2 KiB
C#
|
|
using OpenCVForUnity.CoreModule;
|
|
using OpenCVForUnity.UtilsModule;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace OpenCVForUnity.Features2dModule
|
|
{
|
|
|
|
// C++: class FastFeatureDetector
|
|
/**
|
|
* Wrapping class for feature detection using the FAST method. :
|
|
*/
|
|
|
|
public class FastFeatureDetector : Feature2D
|
|
{
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
|
|
try
|
|
{
|
|
if (disposing)
|
|
{
|
|
}
|
|
if (IsEnabledDispose)
|
|
{
|
|
if (nativeObj != IntPtr.Zero)
|
|
features2d_FastFeatureDetector_delete(nativeObj);
|
|
nativeObj = IntPtr.Zero;
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
}
|
|
|
|
protected internal FastFeatureDetector(IntPtr addr) : base(addr) { }
|
|
|
|
// internal usage only
|
|
public static new FastFeatureDetector __fromPtr__(IntPtr addr) { return new FastFeatureDetector(addr); }
|
|
|
|
// C++: enum <unnamed>
|
|
public const int THRESHOLD = 10000;
|
|
public const int NONMAX_SUPPRESSION = 10001;
|
|
public const int FAST_N = 10002;
|
|
// C++: enum cv.FastFeatureDetector.DetectorType
|
|
public const int TYPE_5_8 = 0;
|
|
public const int TYPE_7_12 = 1;
|
|
public const int TYPE_9_16 = 2;
|
|
//
|
|
// C++: static Ptr_FastFeatureDetector cv::FastFeatureDetector::create(int threshold = 10, bool nonmaxSuppression = true, FastFeatureDetector_DetectorType type = FastFeatureDetector::TYPE_9_16)
|
|
//
|
|
|
|
public static FastFeatureDetector create(int threshold, bool nonmaxSuppression, int type)
|
|
{
|
|
|
|
|
|
return FastFeatureDetector.__fromPtr__(DisposableObject.ThrowIfNullIntPtr(features2d_FastFeatureDetector_create_10(threshold, nonmaxSuppression, type)));
|
|
|
|
|
|
}
|
|
|
|
public static FastFeatureDetector create(int threshold, bool nonmaxSuppression)
|
|
{
|
|
|
|
|
|
return FastFeatureDetector.__fromPtr__(DisposableObject.ThrowIfNullIntPtr(features2d_FastFeatureDetector_create_11(threshold, nonmaxSuppression)));
|
|
|
|
|
|
}
|
|
|
|
public static FastFeatureDetector create(int threshold)
|
|
{
|
|
|
|
|
|
return FastFeatureDetector.__fromPtr__(DisposableObject.ThrowIfNullIntPtr(features2d_FastFeatureDetector_create_12(threshold)));
|
|
|
|
|
|
}
|
|
|
|
public static FastFeatureDetector create()
|
|
{
|
|
|
|
|
|
return FastFeatureDetector.__fromPtr__(DisposableObject.ThrowIfNullIntPtr(features2d_FastFeatureDetector_create_13()));
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: void cv::FastFeatureDetector::setThreshold(int threshold)
|
|
//
|
|
|
|
public void setThreshold(int threshold)
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
features2d_FastFeatureDetector_setThreshold_10(nativeObj, threshold);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: int cv::FastFeatureDetector::getThreshold()
|
|
//
|
|
|
|
public int getThreshold()
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
return features2d_FastFeatureDetector_getThreshold_10(nativeObj);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: void cv::FastFeatureDetector::setNonmaxSuppression(bool f)
|
|
//
|
|
|
|
public void setNonmaxSuppression(bool f)
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
features2d_FastFeatureDetector_setNonmaxSuppression_10(nativeObj, f);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: bool cv::FastFeatureDetector::getNonmaxSuppression()
|
|
//
|
|
|
|
public bool getNonmaxSuppression()
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
return features2d_FastFeatureDetector_getNonmaxSuppression_10(nativeObj);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: void cv::FastFeatureDetector::setType(FastFeatureDetector_DetectorType type)
|
|
//
|
|
|
|
public void setType(int type)
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
features2d_FastFeatureDetector_setType_10(nativeObj, type);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: FastFeatureDetector_DetectorType cv::FastFeatureDetector::getType()
|
|
//
|
|
|
|
public int getType()
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
return features2d_FastFeatureDetector_getType_10(nativeObj);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: String cv::FastFeatureDetector::getDefaultName()
|
|
//
|
|
|
|
public override string getDefaultName()
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
string retVal = Marshal.PtrToStringAnsi(DisposableObject.ThrowIfNullIntPtr(features2d_FastFeatureDetector_getDefaultName_10(nativeObj)));
|
|
|
|
return retVal;
|
|
}
|
|
|
|
|
|
#if (UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR
|
|
const string LIBNAME = "__Internal";
|
|
#else
|
|
const string LIBNAME = "opencvforunity";
|
|
#endif
|
|
|
|
|
|
|
|
// C++: static Ptr_FastFeatureDetector cv::FastFeatureDetector::create(int threshold = 10, bool nonmaxSuppression = true, FastFeatureDetector_DetectorType type = FastFeatureDetector::TYPE_9_16)
|
|
[DllImport(LIBNAME)]
|
|
private static extern IntPtr features2d_FastFeatureDetector_create_10(int threshold, [MarshalAs(UnmanagedType.U1)] bool nonmaxSuppression, int type);
|
|
[DllImport(LIBNAME)]
|
|
private static extern IntPtr features2d_FastFeatureDetector_create_11(int threshold, [MarshalAs(UnmanagedType.U1)] bool nonmaxSuppression);
|
|
[DllImport(LIBNAME)]
|
|
private static extern IntPtr features2d_FastFeatureDetector_create_12(int threshold);
|
|
[DllImport(LIBNAME)]
|
|
private static extern IntPtr features2d_FastFeatureDetector_create_13();
|
|
|
|
// C++: void cv::FastFeatureDetector::setThreshold(int threshold)
|
|
[DllImport(LIBNAME)]
|
|
private static extern void features2d_FastFeatureDetector_setThreshold_10(IntPtr nativeObj, int threshold);
|
|
|
|
// C++: int cv::FastFeatureDetector::getThreshold()
|
|
[DllImport(LIBNAME)]
|
|
private static extern int features2d_FastFeatureDetector_getThreshold_10(IntPtr nativeObj);
|
|
|
|
// C++: void cv::FastFeatureDetector::setNonmaxSuppression(bool f)
|
|
[DllImport(LIBNAME)]
|
|
private static extern void features2d_FastFeatureDetector_setNonmaxSuppression_10(IntPtr nativeObj, [MarshalAs(UnmanagedType.U1)] bool f);
|
|
|
|
// C++: bool cv::FastFeatureDetector::getNonmaxSuppression()
|
|
[DllImport(LIBNAME)]
|
|
[return: MarshalAs(UnmanagedType.U1)]
|
|
private static extern bool features2d_FastFeatureDetector_getNonmaxSuppression_10(IntPtr nativeObj);
|
|
|
|
// C++: void cv::FastFeatureDetector::setType(FastFeatureDetector_DetectorType type)
|
|
[DllImport(LIBNAME)]
|
|
private static extern void features2d_FastFeatureDetector_setType_10(IntPtr nativeObj, int type);
|
|
|
|
// C++: FastFeatureDetector_DetectorType cv::FastFeatureDetector::getType()
|
|
[DllImport(LIBNAME)]
|
|
private static extern int features2d_FastFeatureDetector_getType_10(IntPtr nativeObj);
|
|
|
|
// C++: String cv::FastFeatureDetector::getDefaultName()
|
|
[DllImport(LIBNAME)]
|
|
private static extern IntPtr features2d_FastFeatureDetector_getDefaultName_10(IntPtr nativeObj);
|
|
|
|
// native support for java finalize()
|
|
[DllImport(LIBNAME)]
|
|
private static extern void features2d_FastFeatureDetector_delete(IntPtr nativeObj);
|
|
|
|
}
|
|
}
|