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 the BRISK keypoint detector and descriptor extractor, described in [LCS11] . More...
Public Member Functions | |
override string | getDefaultName () |
int | getOctaves () |
float | getPatternScale () |
int | getThreshold () |
void | setOctaves (int octaves) |
Set detection octaves. | |
void | setPatternScale (float patternScale) |
Set detection patternScale. | |
void | setThreshold (int threshold) |
Set detection threshold. | |
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 BRISK | __fromPtr__ (IntPtr addr) |
static BRISK | create () |
The BRISK constructor. | |
static BRISK | create (int thresh) |
The BRISK constructor. | |
static BRISK | create (int thresh, int octaves) |
The BRISK constructor. | |
static BRISK | create (int thresh, int octaves, float patternScale) |
The BRISK constructor. | |
static BRISK | create (int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList) |
The BRISK constructor for a custom pattern, detection threshold and octaves. | |
static BRISK | create (int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax) |
The BRISK constructor for a custom pattern, detection threshold and octaves. | |
static BRISK | create (int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin) |
The BRISK constructor for a custom pattern, detection threshold and octaves. | |
static BRISK | create (int thresh, int octaves, MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange) |
The BRISK constructor for a custom pattern, detection threshold and octaves. | |
static BRISK | create (MatOfFloat radiusList, MatOfInt numberList) |
The BRISK constructor for a custom pattern. | |
static BRISK | create (MatOfFloat radiusList, MatOfInt numberList, float dMax) |
The BRISK constructor for a custom pattern. | |
static BRISK | create (MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin) |
The BRISK constructor for a custom pattern. | |
static BRISK | create (MatOfFloat radiusList, MatOfInt numberList, float dMax, float dMin, MatOfInt indexChange) |
The BRISK constructor for a custom pattern. | |
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) |
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 the BRISK keypoint detector and descriptor extractor, described in [LCS11] .
|
static |
|
static |
The BRISK constructor.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
patternScale | apply this scale to the pattern used for sampling the neighbourhood of a keypoint. |
|
static |
The BRISK constructor.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
patternScale | apply this scale to the pattern used for sampling the neighbourhood of a keypoint. |
|
static |
The BRISK constructor.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
patternScale | apply this scale to the pattern used for sampling the neighbourhood of a keypoint. |
|
static |
The BRISK constructor.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
patternScale | apply this scale to the pattern used for sampling the neighbourhood of a keypoint. |
|
static |
The BRISK constructor for a custom pattern, detection threshold and octaves.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern, detection threshold and octaves.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern, detection threshold and octaves.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern, detection threshold and octaves.
thresh | AGAST detection threshold score. |
octaves | detection octaves. Use 0 to do single scale. |
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern.
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern.
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern.
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
static |
The BRISK constructor for a custom pattern.
radiusList | defines the radii (in pixels) where the samples around a keypoint are taken (for keypoint scale 1). |
numberList | defines the number of sampling points on the sampling circle. Must be the same size as radiusList.. |
dMax | threshold for the short pairings used for descriptor formation (in pixels for keypoint scale 1). |
dMin | threshold for the long pairings used for orientation determination (in pixels for keypoint scale 1). |
indexChange | index remapping of the bits. |
|
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.
int OpenCVForUnity.Features2dModule.BRISK.getOctaves | ( | ) |
float OpenCVForUnity.Features2dModule.BRISK.getPatternScale | ( | ) |
int OpenCVForUnity.Features2dModule.BRISK.getThreshold | ( | ) |
void OpenCVForUnity.Features2dModule.BRISK.setOctaves | ( | int | octaves | ) |
Set detection octaves.
octaves | detection octaves. Use 0 to do single scale. |
void OpenCVForUnity.Features2dModule.BRISK.setPatternScale | ( | float | patternScale | ) |
Set detection patternScale.
patternScale | apply this scale to the pattern used for sampling the neighbourhood of a keypoint. |
void OpenCVForUnity.Features2dModule.BRISK.setThreshold | ( | int | threshold | ) |
Set detection threshold.
threshold | AGAST detection threshold score. |