MATLAB File Help: cv.FeatureDetector Index
cv.FeatureDetector

Common interface of 2D image Feature Detectors.

Class for detecting keypoints in images.

Feature detectors in OpenCV have wrappers with a common interface that enables you to easily switch between different algorithms solving the same problem. All objects that implement keypoint detectors inherit the FeatureDetector interface.

Example

detector = cv.FeatureDetector('ORB');
keypoints = detector.detect(img);
See also
Class Details
Superclasses handle
Sealed false
Construct on load false
Constructor Summary
FeatureDetector Creates a feature detector by name. 
Property Summary
Type Type of the detector 
id Object ID 
Method Summary
  addlistener Add listener for event. 
  clear Clears the algorithm state 
  delete Destructor 
  detect Detects keypoints in an image or image set. 
  empty Checks if detector object is empty. 
  eq == (EQ) Test handle equality. 
  findobj Find objects matching specified conditions. 
  findprop Find property of MATLAB handle object. 
  ge >= (GE) Greater than or equal relation for handles. 
  getDefaultName Returns the algorithm string identifier 
  gt > (GT) Greater than relation for handles. 
Sealed   isvalid Test handle validity. 
  le <= (LE) Less than or equal relation for handles. 
  load Loads algorithm from a file or a string 
  lt < (LT) Less than relation for handles. 
  ne ~= (NE) Not equal relation for handles. 
  notify Notify listeners of event. 
  save Saves the algorithm parameters to a file 
  typeid Name of the C++ type (RTTI)