OpenCV 4.12.0
开源计算机视觉
加载中...
搜索中...
无匹配项
xfeatures2d.hpp 文件参考
xfeatures2d.hpp 的包含依赖图

类  cv::xfeatures2d::AffineFeature2D
 实现关键点仿射适配的类。 更多...
 
类  cv::xfeatures2d::BEBLID
 实现 BEBLID(Boosted Efficient Binary Local Image Descriptor)的类,如 [259] 中所述。 更多...
 
类  cv::xfeatures2d::BoostDesc
 实现 BoostDesc(Learning Image Descriptors with Boosting)的类,如 [264][265] 中所述。 更多...
 
类  cv::xfeatures2d::BriefDescriptorExtractor
 用于计算 [48] 中描述的 BRIEF 描述符的类。 更多...
 
类  cv::xfeatures2d::DAISY
 实现 DAISY 描述符的类,如 [273] 中所述。 更多...
 
类  cv::xfeatures2d::Elliptic_KeyPoint
 兴趣点周围的椭圆区域。 更多...
 
类  cv::xfeatures2d::FREAK
 实现 FREAKFast Retina Keypoint)关键点描述符的类,如 [9] 中所述。 更多...
 
类  cv::xfeatures2d::HarrisLaplaceFeatureDetector
 实现 Harris-Laplace 特征检测器的类,如 [195] 中所述。 更多...
 
类  cv::xfeatures2d::LATCH
 
类  cv::xfeatures2d::LUCID
 实现局部均匀比较图像描述符的类,如 [323] 中所述。 更多...
 
类  cv::xfeatures2d::MSDDetector
 实现 MSD(Maximal Self-Dissimilarity)关键点检测器的类,如 [274] 中所述。 更多...
 
类  cv::xfeatures2d::PCTSignatures
 实现 PCT(position-color-texture)签名提取的类,如 [154] 中所述。 该算法分为特征采样器和聚类器。 特征采样器在给定的坐标集生成样本。 然后,聚类器使用 k-means 算法生成这些样本的聚类。 结果聚类集是输入图像的签名。 更多...
 
类  cv::xfeatures2d::PCTSignaturesSQFD
 实现签名二次型距离(SQFD)的类。 更多...
 
类  cv::xfeatures2d::StarDetector
 该类实现了 [2] 引入的关键点检测器,是 StarDetector 的同义词。 : 更多...
 
类  cv::xfeatures2d::TBMR
 实现基于树的莫尔斯区域(TBMR)的类,如 [309] 中所述,并扩展了尺度提取能力。 更多...
 
类  cv::xfeatures2d::TEBLID
 实现 TEBLID(Triplet-based Efficient Binary Local Image Descriptor)的类,如 [260] 中所述。 更多...
 
类  cv::xfeatures2d::VGG
 实现 VGG (Oxford Visual Geometry Group) 描述符的类,该描述符使用 "Descriptor Learning Using Convex Optimisation" (DLCO) aparatus 端到端训练,如 [249] 中所述。 更多...
 

命名空间

命名空间  cv
 
命名空间  cv::xfeatures2d
 

函数

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::matchGMS (const Size &size1, const Size &size2, const std::vector< KeyPoint > &keypoints1, const std::vector< KeyPoint > &keypoints2, const std::vector< DMatch > &matches1to2, std::vector< DMatch > &matchesGMS, const bool withRotation=false, const bool withScale=false, const double thresholdFactor=6.0)
 GMS(Grid-based Motion Statistics)特征匹配策略,如 [27] 中所述。
 
void cv::xfeatures2d::matchLOGOS (const std::vector< KeyPoint > &keypoints1, const std::vector< KeyPoint > &keypoints2, const std::vector< int > &nn1, const std::vector< int > &nn2, std::vector< DMatch > &matches1to2)
 LOGOS(Local geometric support for high-outlier spatial verification)特征匹配策略,如 [177] 中所述。