SaDVIO
cvBRISKFeatureDetector.h
Go to the documentation of this file.
1 #ifndef CVBRISKFEATUREDETECTOR_H
2 #define CVBRISKFEATUREDETECTOR_H
3 
5 
6 namespace isae {
7 
12  public:
13  cvBRISKFeatureDetector(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 // CVBRISKFEATUREDETECTOR_H
isae::cvBRISKFeatureDetector::computeDist
double computeDist(const cv::Mat &desc1, const cv::Mat &desc2) const override
Virtual function to compute the distance between two feature descriptors.
Definition: cvBRISKFeatureDetector.cpp:16
aOpenCVFeatureDetector.h
isae::cvBRISKFeatureDetector::init
void init() override
Virtual function to initialize the feature detector.
Definition: cvBRISKFeatureDetector.cpp:8
isae
Definition: AFeature2D.h:8
isae::AFeatureDetector::_max_matching_dist
double _max_matching_dist
distance threshold for matching
Definition: aFeatureDetector.h:136
isae::cvBRISKFeatureDetector::cvBRISKFeatureDetector
cvBRISKFeatureDetector(int n, int n_per_cell, double max_matching_dist=64)
Definition: cvBRISKFeatureDetector.h:13
isae::AOpenCVFeatureDetector
AOpenCVFeatureDetector class for detecting and computing features using OpenCV.
Definition: aOpenCVFeatureDetector.h:16
isae::cvBRISKFeatureDetector
Class for detecting and computing BRISK features using OpenCV.
Definition: cvBRISKFeatureDetector.h:11