Class cv::FastFeatureDetector#
Wrapping class for feature detection using the FAST method. View details
#include <opencv2/features.hpp>Collaboration diagram for cv::FastFeatureDetector:
Public Types#
enum cv::FastFeatureDetector {
cv::THRESHOLD = 10000,
cv::NONMAX_SUPPRESSION =10001,
cv::FAST_N =10002
}
enum DetectorType {
TYPE_5_8 = 0,
TYPE_7_12 = 1,
TYPE_9_16 = 2
}Public Member Functions#
Public Member Functions inherited from cv::Feature2D
Return |
Name |
Description |
|---|---|---|
|
|
Computes the descriptors for a set of keypoints detected in an image (first variant) or image set (second variant). |
|
||
|
||
|
||
|
||
|
|
Detects keypoints in an image (first variant) or image set (second variant). |
|
||
|
||
|
Return true if detector object is empty. |
|
|
Reads algorithm parameters from a file storage. |
|
|
||
|
||
|
Stores algorithm parameters in a file storage. |
|
|
Public Member Functions inherited from cv::Algorithm
Return |
Name |
Description |
|---|---|---|
|
Clears the algorithm state. |
|
|
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. |
|
|
Reads algorithm parameters from a file storage. |
|
|
||
|
|
|
|
Stores algorithm parameters in a file storage. |
|
|
Static Public Member Functions#
Static Public Member Functions inherited from cv::Algorithm
Return |
Name |
Description |
|---|---|---|
|
|
Loads algorithm from the file. |
|
|
Loads algorithm from a String. |
|
Reads algorithm from the file node. |
Additional Inherited Members#
Protected Member Functions inherited from cv::Algorithm
Return |
Name |
Description |
|---|---|---|
|
Detailed Description#
Wrapping class for feature detection using the FAST method.
Check the corresponding tutorial for more details.
Member Enumeration Documentation#
enum FastFeatureDetector
|
|
|
enum DetectorType
|
|
|
Member Function Documentation#
create()#
static Ptr< FastFeatureDetector > cv::FastFeatureDetector::create(
int threshold = 10,
bool nonmaxSuppression = true,
FastFeatureDetector::DetectorType type = FastFeatureDetector::TYPE_9_16 )
Python:
cv.FastFeatureDetector.create([, threshold[, nonmaxSuppression[, type]]]) -> retval
cv.FastFeatureDetector_create([, threshold[, nonmaxSuppression[, type]]]) -> retval
getDefaultName()#
String cv::FastFeatureDetector::getDefaultName()
Python:
cv.FastFeatureDetector.getDefaultName() -> retval
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.
getNonmaxSuppression()#
bool cv::FastFeatureDetector::getNonmaxSuppression()
Python:
cv.FastFeatureDetector.getNonmaxSuppression() -> retval
getThreshold()#
int cv::FastFeatureDetector::getThreshold()
Python:
cv.FastFeatureDetector.getThreshold() -> retval
getType()#
FastFeatureDetector::DetectorType cv::FastFeatureDetector::getType()
Python:
cv.FastFeatureDetector.getType() -> retval
setNonmaxSuppression()#
void cv::FastFeatureDetector::setNonmaxSuppression(bool f)
Python:
cv.FastFeatureDetector.setNonmaxSuppression(f)
setThreshold()#
void cv::FastFeatureDetector::setThreshold(int threshold)
Python:
cv.FastFeatureDetector.setThreshold(threshold)
setType()#
void cv::FastFeatureDetector::setType(FastFeatureDetector::DetectorType type)
Python:
cv.FastFeatureDetector.setType(type)
Source file#
The documentation for this class was generated from the following file:
opencv2/features.hpp