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