OpenCV  4.10.0
开源计算机视觉
加载中…
搜索中…
无匹配
公有成员函数 | 公有属性 | 所有成员列表
cv::detail::MatchesInfo 结构体参考

包含两幅图像之间匹配信息结构体。 更多…

#include <opencv2/stitching/detail/matchers.hpp>

cv::detail::MatchesInfo 协作图

公有成员函数

 MatchesInfo ()
 
 MatchesInfo (const MatchesInfo &other)
 
std::vector< uchargetInliers ()
 
std::vector< DMatchgetMatches ()
 
MatchesInfooperator= (const MatchesInfo &other)
 

公有属性

double confidence
 两幅图像属于同一全景的置信度。
 
int dst_img_idx
 图像索引(可选)
 
Mat H
 估计的变换。
 
std::vector< ucharinliers_mask
 几何一致性匹配掩码。
 
std::vector< DMatchmatches
 
int num_inliers
 几何一致性匹配的数量。
 
int src_img_idx
 

详细描述

包含两幅图像之间匹配信息结构体。

假设这两幅图像之间存在一个变换。变换可能是单应变换或仿射变换,取决于选择的匹配器。

参见
detail::FeaturesMatcher

构造函数和析构函数文档

◆ MatchesInfo() [1/2]

cv::detail::MatchesInfo::MatchesInfo ( )

◆ MatchesInfo() [2/2]

cv::detail::MatchesInfo::MatchesInfo ( const MatchesInfo other)

成员函数文档

◆ getInliers()

std::vector< uchar > cv::detail::MatchesInfo::getInliers ( )
inline

◆ getMatches()

std::vector< DMatch > cv::detail::MatchesInfo::getMatches ( )
inline

◆ operator=

MatchesInfo & cv::detail::MatchesInfo::operator= ( const MatchesInfo other)

成员数据文档

◆ confidence

double cv::detail::MatchesInfo::confidence

两幅图像属于同一全景的置信度。

◆ dst_img_idx

int cv::detail::MatchesInfo::dst_img_idx

图像索引(可选)

◆ H

Mat cv::detail::MatchesInfo::H

估计的变换。

◆ inliers_mask

std::vector<uchar> cv::detail::MatchesInfo::inliers_mask

几何一致性匹配掩码。

◆ matches

std::vector<DMatch> cv::detail::MatchesInfo::matches

◆ num_inliers

int cv::detail::MatchesInfo::num_inliers

几何一致性匹配的数量。

◆ src_img_idx

int cv::detail::MatchesInfo::src_img_idx

此结构体文档是根据以下文件生成的