OpenCV
3.0.0
Open Source Computer Vision
|
Structure containing information about matches between two images. More...
#include "matchers.hpp"
Public Member Functions | |
MatchesInfo () | |
MatchesInfo (const MatchesInfo &other) | |
const MatchesInfo & | operator= (const MatchesInfo &other) |
Public Attributes | |
double | confidence |
Confidence two images are from the same panorama. More... | |
int | dst_img_idx |
Images indices (optional) More... | |
Mat | H |
Estimated homography. More... | |
std::vector< uchar > | inliers_mask |
Geometrically consistent matches mask. More... | |
std::vector< DMatch > | matches |
int | num_inliers |
Number of geometrically consistent matches. More... | |
int | src_img_idx |
Structure containing information about matches between two images.
It's assumed that there is a homography between those images.
cv::detail::MatchesInfo::MatchesInfo | ( | ) |
cv::detail::MatchesInfo::MatchesInfo | ( | const MatchesInfo & | other | ) |
const MatchesInfo& cv::detail::MatchesInfo::operator= | ( | const MatchesInfo & | other | ) |
double cv::detail::MatchesInfo::confidence |
Confidence two images are from the same panorama.
int cv::detail::MatchesInfo::dst_img_idx |
Images indices (optional)
Mat cv::detail::MatchesInfo::H |
Estimated homography.
std::vector<uchar> cv::detail::MatchesInfo::inliers_mask |
Geometrically consistent matches mask.
std::vector<DMatch> cv::detail::MatchesInfo::matches |
int cv::detail::MatchesInfo::num_inliers |
Number of geometrically consistent matches.
int cv::detail::MatchesInfo::src_img_idx |