![]() |
OpenCV 4.11.0
开源计算机视觉
|
本节描述用于二维特征检测的实验性算法。
函数 | |
| void | cv::xfeatures2d::FASTForPointSet (InputArray image, std::vector< KeyPoint > &keypoints, int threshold, bool nonmaxSuppression=true, cv::FastFeatureDetector::DetectorType type=FastFeatureDetector::TYPE_9_16) |
| 使用FAST算法估计预先指定的KeyPoints的角点性。 | |
| void cv::xfeatures2d::FASTForPointSet | ( | InputArray | image, |
| std::vector< KeyPoint > & | keypoints, | ||
| int | threshold, | ||
| bool | nonmaxSuppression = true, | ||
| cv::FastFeatureDetector::DetectorType | type = FastFeatureDetector::TYPE_9_16 ) |
#include <opencv2/xfeatures2d.hpp>
使用FAST算法估计预先指定的KeyPoints的角点性。
| image | 检测关键点(角点)的灰度图像。 |
| keypoints | 应测试以符合FAST准则的关键点。未检测为角点的关键点将被移除。 |
| threshold | 中心像素与围绕该像素的圆的像素之间的强度差异的阈值。 |
| nonmaxSuppression | 如果为真,则将非最大抑制应用于检测到的角点(关键点)。 |
| type | 论文中定义的三个邻域之一:FastFeatureDetector::TYPE_9_16,FastFeatureDetector::TYPE_7_12,FastFeatureDetector::TYPE_5_8 |
使用[228]中的FAST算法检测角点。