OpenCV图像拼接(4)图像拼接模块的一个匹配器类cv::detail::BestOf2Neares ...

打印 上一主题 下一主题

主题 954|帖子 954|积分 2862


  • 操纵系统:ubuntu22.04
  • OpenCV版本:OpenCV4.9
  • IDE:Visual Studio Code
  • 编程语言:C++11
算法描述

cv::detail::BestOf2NearestRangeMatcher 是 OpenCV 库中用于图像拼接模块的一个匹配器类,专门用于寻找两幅图像之间的最佳特征点匹配。它是基于“近来邻与次近邻距离比”原则来过滤匹配点对的,以提高匹配效果的正确性。这个类特别适用于需要在多张图片之间举行特征匹配和筛选的应用场景,比如全景图拼接。
重要特点



  • 基于范围的匹配:此匹配器不但思量两张图片之间的直接匹配,还会思量一个范围内其他图片间的匹配关系,这对于全景图像拼接等任务非常有用。
  • 近来邻与次近邻距离比测试:通过比力每个特征点与其近来和次近邻人的距离比值来决定是否接受该匹配,这是一种常用的淘汰误匹配的技能。
以下是该类的一些成员函数和变量的先容:
构造函数

BestOf2NearestRangeMatcher(bool try_use_gpu = false, float match_conf = 0.3f, int num_matches_thresh1 = 6, int num_matches_thresh2 = 6, int range_width = -1);


  • try_use_gpu: 是否尝试使用 GPU 举行加速。
  • match_conf: 匹配置信度阈值,用来过滤不可靠的匹配对。
  • num_matches_thresh1: 第一个匹配数量阈值,低于此值将不会盘算单应性矩阵。
  • num_matches_thresh2: 第二个匹配数量阈值,低于此值将不会举行运动估计的细化。
  • range_width: 范围宽度,用于限制匹配搜刮的范围,默认为 -1 表示没有限制。
成员函数



  • void match(const ImageFeatures &features1, const ImageFeatures &features2, MatchesInfo &matches_info);
    实验两幅图像间的特征匹配,并添补 MatchesInfo 结构体,包罗匹配效果和大概的单应性变换矩阵。
  • void operator()(const std::vector &features, std::vector &pairwise_matches, const UMat &mask);
    对一组图像实验特征匹配,天生所有图像对之间的匹配信息。
其他成员



  • impl_: 实现细节指针,指向详细的匹配器实现(大概是基于 CPU 或者 GPU)。
  • is_thread_safe_: 标识是否线程安全。
  • num_matches_thresh1_, num_matches_thresh2_: 上述构造函数参数中的两个匹配数量阈值。
  • range_width_: 上述构造函数参数中的范围宽度。
代码示例

  1. #include <opencv2/opencv.hpp>
  2. #include <opencv2/stitching/detail/matchers.hpp>
  3. using namespace cv;
  4. using namespace cv::detail;
  5. int main()
  6. {
  7.     // 读取两幅待匹配的图像
  8.     Mat img1 = imread( "/media/dingxin/data/study/OpenCV/sources/images/stich1.png" );
  9.     Mat img2 = imread( "/media/dingxin/data/study/OpenCV/sources/images/stich2.png" );
  10.     if ( img1.empty() || img2.empty() )
  11.     {
  12.         std::cerr << "无法读取图像文件" << std::endl;
  13.         return -1;
  14.     }
  15.     // 初始化特征检测器和描述符提取器 (这里以ORB为例)
  16.     Ptr< Feature2D > detector = ORB::create( 500 );  // 提取500个关键点
  17.     // 检测特征点并计算描述符
  18.     std::vector< KeyPoint > keypoints1, keypoints2;
  19.     Mat descriptors1, descriptors2;
  20.     detector->detectAndCompute( img1, noArray(), keypoints1, descriptors1 );
  21.     detector->detectAndCompute( img2, noArray(), keypoints2, descriptors2 );
  22.     // 特征匹配
  23.     BFMatcher matcher( NORM_HAMMING );
  24.     std::vector< DMatch > matches;
  25.     matcher.match( descriptors1, descriptors2, matches );
  26.     // 绘制匹配结果
  27.     Mat img_matches;
  28.     drawMatches( img1, keypoints1, img2, keypoints2, matches, img_matches );
  29.     // 显示匹配结果
  30.     imshow( "Matches", img_matches );
  31.     waitKey( 0 );
  32.     return 0;
  33. }
复制代码
运行效果



免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

农妇山泉一亩田

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表