SaDVIO
cvFASTFeatureDetector.h
Go to the documentation of this file.
1 #ifndef CVFASTFEATUREDETECTOR_H
2 #define CVFASTFEATUREDETECTOR_H
3 
5 
6 namespace isae {
7 
12  public:
13  cvFASTFeatureDetector(int n, int n_per_cell, double max_matching_dist = 64)
14  : AOpenCVFeatureDetector(n, n_per_cell) {
15  _max_matching_dist = max_matching_dist;
16  this->init();
17  }
18 
19  void init() override;
20  double computeDist(const cv::Mat &desc1, const cv::Mat &desc2) const override;
21 };
22 
23 } // namespace isae
24 
25 #endif // CVFASTFEATUREDETECTOR_H
isae::cvFASTFeatureDetector
Class for detecting and computing FAST features using OpenCV.
Definition: cvFASTFeatureDetector.h:11
isae::cvFASTFeatureDetector::cvFASTFeatureDetector
cvFASTFeatureDetector(int n, int n_per_cell, double max_matching_dist=64)
Definition: cvFASTFeatureDetector.h:13
aOpenCVFeatureDetector.h
isae::cvFASTFeatureDetector::computeDist
double computeDist(const cv::Mat &desc1, const cv::Mat &desc2) const override
Virtual function to compute the distance between two feature descriptors.
Definition: cvFASTFeatureDetector.cpp:12
isae
Definition: AFeature2D.h:8
isae::AFeatureDetector::_max_matching_dist
double _max_matching_dist
distance threshold for matching
Definition: aFeatureDetector.h:136
isae::cvFASTFeatureDetector::init
void init() override
Virtual function to initialize the feature detector.
Definition: cvFASTFeatureDetector.cpp:7
isae::AOpenCVFeatureDetector
AOpenCVFeatureDetector class for detecting and computing features using OpenCV.
Definition: aOpenCVFeatureDetector.h:16