|
bool | getComputeOrientation () |
|
override string | getDefaultName () |
|
int | getKNN () |
|
int | getNmsRadius () |
|
int | getNmsScaleRadius () |
|
int | getNScales () |
|
int | getPatchRadius () |
|
float | getScaleFactor () |
|
int | getSearchAreaRadius () |
|
float | getThSaliency () |
|
void | setComputeOrientation (bool compute_orientation) |
|
void | setKNN (int kNN) |
|
void | setNmsRadius (int nms_radius) |
|
void | setNmsScaleRadius (int nms_scale_radius) |
|
void | setNScales (int use_orientation) |
|
void | setPatchRadius (int patch_radius) |
|
void | setScaleFactor (float scale_factor) |
|
void | setSearchAreaRadius (int use_orientation) |
|
void | setThSaliency (float th_saliency) |
|
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.
|
|
void | read (string fileName) |
|
void | write (string fileName) |
|
virtual void | clear () |
| Clears the algorithm state.
|
|
IntPtr | getNativeObjAddr () |
|
void | save (string filename) |
|
void | Dispose () |
|
void | ThrowIfDisposed () |
|
|
static new MSDDetector | __fromPtr__ (IntPtr addr) |
|
static MSDDetector | create () |
|
static MSDDetector | create (int m_patch_radius) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius, float m_th_saliency) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius, float m_th_saliency, int m_kNN) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius, float m_th_saliency, int m_kNN, float m_scale_factor) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius, float m_th_saliency, int m_kNN, float m_scale_factor, int m_n_scales) |
|
static MSDDetector | create (int m_patch_radius, int m_search_area_radius, int m_nms_radius, int m_nms_scale_radius, float m_th_saliency, int m_kNN, float m_scale_factor, int m_n_scales, bool m_compute_orientation) |
|
static new Feature2D | __fromPtr__ (IntPtr addr) |
|
static Algorithm | __fromPtr__ (IntPtr addr) |
|
static IntPtr | ThrowIfNullIntPtr (IntPtr ptr) |
|
Class implementing the MSD (Maximal Self-Dissimilarity) keypoint detector, described in [Tombari14].
The algorithm implements a novel interest point detector stemming from the intuition that image patches which are highly dissimilar over a relatively large extent of their surroundings hold the property of being repeatable and distinctive. This concept of "contextual self-dissimilarity" reverses the key paradigm of recent successful techniques such as the Local Self-Similarity descriptor and the Non-Local Means filter, which build upon the presence of similar - rather than dissimilar - patches. Moreover, it extends to contextual information the local self-dissimilarity notion embedded in established detectors of corner-like interest points, thereby achieving enhanced repeatability, distinctiveness and localization accuracy.