|
OpenCV453
|
Structure containing information about matches between two images. [詳解]
#include <matchers.hpp>
公開メンバ関数 | |
| MatchesInfo (const MatchesInfo &other) | |
| MatchesInfo & | operator= (const MatchesInfo &other) |
| CV_WRAP std::vector< DMatch > | getMatches () |
| CV_WRAP std::vector< uchar > | getInliers () |
公開変数類 | |
| CV_PROP_RW int | src_img_idx |
| CV_PROP_RW int | dst_img_idx |
| Images indices (optional) | |
| std::vector< DMatch > | matches |
| std::vector< uchar > | inliers_mask |
| Geometrically consistent matches mask | |
| CV_PROP_RW int | num_inliers |
| Number of geometrically consistent matches | |
| CV_PROP_RW Mat | H |
| Estimated transformation | |
| CV_PROP_RW double | confidence |
| Confidence two images are from the same panorama | |
Structure containing information about matches between two images.
It's assumed that there is a transformation between those images. Transformation may be homography or affine transformation based on selected matcher.