我是靠谱客的博主 务实短靴,最近开发中收集的这篇文章主要介绍OpenCV特征匹配相关结构(KeyPoint&DMatch),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  1. 1. 特征点类:
  1. class KeyPoint
    {            Point2f  pt;  //坐标
                 float  size; //特征点邻域直径
                 float  angle; //特征点的方向,值为[零,三百六十),负值表示不使用
                 float  response;
                 int  octave; //特征点所在的图像金字塔的组
                 int  class_id; //用于聚类的id
    }
    2.  存放匹配结果的结构:
  1. struct DMatch
    {         //三个构造函数
              DMatch():
    queryIdx(-1),trainIdx(-1),imgIdx(-1),distance(std::numeric_limits<float>::max()) {}
              DMatch(int  _queryIdx, int  _trainIdx, float  _distance ) :
    queryIdx( _queryIdx),trainIdx( _trainIdx), imgIdx(-1),distance( _distance) {}
              DMatch(int  _queryIdx, int  _trainIdx, int  _imgIdx, float  _distance ) :                   queryIdx(_queryIdx), trainIdx( _trainIdx), imgIdx( _imgIdx),distance( _distance) {}
              int queryIdx;  //此匹配对应的查询图像的特征描述子索引
              int trainIdx;   //此匹配对应的训练(模板)图像的特征描述子索引
              int imgIdx;    //训练图像的索引(若有多个)
              float distance;  //两个特征向量之间的欧氏距离,越小表明匹配度越高。
              bool operator < (const DMatch &m) const;
    };
    3.  图片中特征点欧式距离的计算公式:
    0ρ = √( (x1-x2)2+(y1-y2)2 ) |x| = √( x2 + y2 )



最后

以上就是务实短靴为你收集整理的OpenCV特征匹配相关结构(KeyPoint&DMatch)的全部内容,希望文章能够帮你解决OpenCV特征匹配相关结构(KeyPoint&DMatch)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部