OpenCV for Unity 2.6.4
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.10.0/index.html ) for the details of the argument of the method.
|
Class implementing DAISY descriptor, described in [Tola10]. More...
Public Member Functions | |
override string | getDefaultName () |
Mat | getH () |
bool | getInterpolation () |
int | getNorm () |
int | getQHist () |
int | getQRadius () |
int | getQTheta () |
float | getRadius () |
bool | getUseOrientation () |
void | setH (Mat H) |
void | setInterpolation (bool interpolation) |
void | setNorm (int norm) |
void | setQHist (int q_hist) |
void | setQRadius (int q_radius) |
void | setQTheta (int q_theta) |
void | setRadius (float radius) |
void | setUseOrientation (bool use_orientation) |
Public Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
void | compute (List< Mat > images, List< MatOfKeyPoint > keypoints, List< Mat > descriptors) |
void | compute (Mat image, MatOfKeyPoint keypoints, Mat descriptors) |
Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant). | |
int | defaultNorm () |
int | descriptorSize () |
int | descriptorType () |
void | detect (List< Mat > images, List< MatOfKeyPoint > keypoints) |
void | detect (List< Mat > images, List< MatOfKeyPoint > keypoints, List< Mat > masks) |
void | detect (Mat image, MatOfKeyPoint keypoints) |
Detects keypoints in an image (first variant) or image set (second variant). | |
void | detect (Mat image, MatOfKeyPoint keypoints, Mat mask) |
Detects keypoints in an image (first variant) or image set (second variant). | |
void | detectAndCompute (Mat image, Mat mask, MatOfKeyPoint keypoints, Mat descriptors) |
void | detectAndCompute (Mat image, Mat mask, MatOfKeyPoint keypoints, Mat descriptors, bool useProvidedKeypoints) |
override bool | empty () |
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. | |
override string | getDefaultName () |
void | read (string fileName) |
void | write (string fileName) |
Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
virtual void | clear () |
Clears the algorithm state. | |
IntPtr | getNativeObjAddr () |
void | save (string filename) |
Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
void | Dispose () |
void | ThrowIfDisposed () |
Static Public Member Functions | |
static new DAISY | __fromPtr__ (IntPtr addr) |
static DAISY | create () |
static DAISY | create (float radius) |
static DAISY | create (float radius, int q_radius) |
static DAISY | create (float radius, int q_radius, int q_theta) |
static DAISY | create (float radius, int q_radius, int q_theta, int q_hist) |
static DAISY | create (float radius, int q_radius, int q_theta, int q_hist, Mat H) |
static DAISY | create (float radius, int q_radius, int q_theta, int q_hist, Mat H, bool interpolation) |
static DAISY | create (float radius, int q_radius, int q_theta, int q_hist, Mat H, bool interpolation, bool use_orientation) |
Static Public Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
static new Feature2D | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
static Algorithm | __fromPtr__ (IntPtr addr) |
Static Public Member Functions inherited from OpenCVForUnity.DisposableObject | |
static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
Static Public Attributes | |
const int | NRM_FULL = 102 |
const int | NRM_NONE = 100 |
const int | NRM_PARTIAL = 101 |
const int | NRM_SIFT = 103 |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
override void | Dispose (bool disposing) |
Protected Member Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Protected Member Functions inherited from OpenCVForUnity.DisposableOpenCVObject | |
DisposableOpenCVObject () | |
DisposableOpenCVObject (bool isEnabledDispose) | |
DisposableOpenCVObject (IntPtr ptr) | |
DisposableOpenCVObject (IntPtr ptr, bool isEnabledDispose) | |
Protected Member Functions inherited from OpenCVForUnity.DisposableObject | |
DisposableObject () | |
DisposableObject (bool isEnabledDispose) | |
Additional Inherited Members | |
Package Functions inherited from OpenCVForUnity.Features2dModule.Feature2D | |
Package Functions inherited from OpenCVForUnity.CoreModule.Algorithm | |
Package Attributes inherited from OpenCVForUnity.DisposableOpenCVObject | |
Properties inherited from OpenCVForUnity.DisposableObject | |
bool | IsDisposed [get, protected set] |
bool | IsEnabledDispose [get, set] |
Class implementing DAISY descriptor, described in [Tola10].
radius radius of the descriptor at the initial scale q_radius amount of radial range division quantity q_theta amount of angular range division quantity q_hist amount of gradient orientations range division quantity norm choose descriptors normalization type, where DAISY.NRM_NONE will not do any normalization (default), DAISY.NRM_PARTIAL mean that histograms are normalized independently for L2 norm equal to 1.0, DAISY.NRM_FULL mean that descriptors are normalized for L2 norm equal to 1.0, DAISY.NRM_SIFT mean that descriptors are normalized for L2 norm equal to 1.0 but no individual one is bigger than 0.154 as in SIFT H optional 3x3 homography matrix used to warp the grid of daisy but sampling keypoints remains unwarped on image interpolation switch to disable interpolation for speed improvement at minor quality loss use_orientation sample patterns using keypoints orientation, disabled by default.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
protectedvirtual |
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
|
virtual |
Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string.
Reimplemented from OpenCVForUnity.CoreModule.Algorithm.
Mat OpenCVForUnity.Xfeatures2dModule.DAISY.getH | ( | ) |
bool OpenCVForUnity.Xfeatures2dModule.DAISY.getInterpolation | ( | ) |
int OpenCVForUnity.Xfeatures2dModule.DAISY.getNorm | ( | ) |
int OpenCVForUnity.Xfeatures2dModule.DAISY.getQHist | ( | ) |
int OpenCVForUnity.Xfeatures2dModule.DAISY.getQRadius | ( | ) |
int OpenCVForUnity.Xfeatures2dModule.DAISY.getQTheta | ( | ) |
float OpenCVForUnity.Xfeatures2dModule.DAISY.getRadius | ( | ) |
bool OpenCVForUnity.Xfeatures2dModule.DAISY.getUseOrientation | ( | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setH | ( | Mat | H | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setInterpolation | ( | bool | interpolation | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setNorm | ( | int | norm | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setQHist | ( | int | q_hist | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setQRadius | ( | int | q_radius | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setQTheta | ( | int | q_theta | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setRadius | ( | float | radius | ) |
void OpenCVForUnity.Xfeatures2dModule.DAISY.setUseOrientation | ( | bool | use_orientation | ) |
|
static |
|
static |
|
static |
|
static |