我正在玩 OpenCVMixed Processing
教程,在使用 FAST 检测器检测相机帧中的特征时,我体验到了良好的帧率(~27)。
我将检测器更改为 ORB,帧速率下降到 10 左右。这是因为 ORB 不如 FAST 快还是我遗漏了什么?
Mat& mGr = *(Mat*)addrGray;
vector<KeyPoint> v;
OrbFeatureDetector detector(50);
// FastFeatureDetector detector(50);
detector.detect(mGr, v);
- 有没有办法调整 ORB 并加快速度?
- 比方说,是否可以每 5 帧进行一次检测?