Renesas / opencv-lib

Dependents:   RZ_A2M_Mbed_samples

Embed: (wiki syntax)

« Back to documentation index

MatchesInfo Struct Reference

MatchesInfo Struct Reference
[Features Finding and Images Matching]

Structure containing information about matches between two images. More...

#include <matchers.hpp>

Data Fields

int dst_img_idx
 Images indices (optional)
std::vector< uchar > inliers_mask
 Geometrically consistent matches mask.
int num_inliers
 Number of geometrically consistent matches.
Mat H
 Estimated transformation.
double confidence
 Confidence two images are from the same panorama.

Detailed Description

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.

See also:
detail::FeaturesMatcher

Definition at line 206 of file matchers.hpp.


Field Documentation

double confidence

Confidence two images are from the same panorama.

Definition at line 217 of file matchers.hpp.

Images indices (optional)

Definition at line 212 of file matchers.hpp.

Mat H

Estimated transformation.

Definition at line 216 of file matchers.hpp.

std::vector<uchar> inliers_mask

Geometrically consistent matches mask.

Definition at line 214 of file matchers.hpp.

Number of geometrically consistent matches.

Definition at line 215 of file matchers.hpp.