OpenCV  4.10.0
开源计算机视觉
加载中...
搜索中...
无匹配项
公共成员函数 | 公共属性 | 所有成员列表
cv::DMatch 类参考

用于匹配关键点描述符的类。 更多...

#include <opencv2/core/types.hpp>

cv::DMatch 的协作图

公共成员函数

 DMatch ()
 
 DMatch (int _queryIdx, int _trainIdx, float _distance)
 
 DMatch (int _queryIdx, int _trainIdx, int _imgIdx, float _distance)
 
bool operator< (const DMatch &m) const
 

公共属性

float distance
 
int imgIdx
 训练图像索引
 
int queryIdx
 查询描述符索引
 
int trainIdx
 训练描述符索引
 

详细描述

用于匹配关键点描述符的类。

查询描述符索引、训练描述符索引、训练图像索引和描述符之间的距离。

构造函数和析构函数文档

◆ DMatch() [1/3]

cv::DMatch::DMatch ( )
Python
cv.DMatch() -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch 对象>

◆ DMatch() [2/3]

cv::DMatch::DMatch ( int  _queryIdx,
int  _trainIdx,
float  _distance 
)
Python
cv.DMatch() -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch 对象>

◆ DMatch() [3/3]

cv::DMatch::DMatch ( int  _queryIdx,
int  _trainIdx,
int  _imgIdx,
float  _distance 
)
Python
cv.DMatch() -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _distance) -> <DMatch 对象>
cv.DMatch(_queryIdx, _trainIdx, _imgIdx, _distance) -> <DMatch 对象>

成员函数文档

◆ operator<()

bool cv::DMatch::operator< ( const DMatch m) const

成员数据文档

◆ distance

float cv::DMatch::distance

◆ imgIdx

int cv::DMatch::imgIdx

训练图像索引

◆ queryIdx

int cv::DMatch::queryIdx

查询描述符索引

◆ trainIdx

int cv::DMatch::trainIdx

训练描述符索引


此类的文档是从以下文件生成的