opencv on mbed

Dependencies:   mbed

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 homography.
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 homography between those images.

Definition at line 161 of file matchers.hpp.


Field Documentation

double confidence

Confidence two images are from the same panorama.

Definition at line 172 of file matchers.hpp.

Images indices (optional)

Definition at line 167 of file matchers.hpp.

Mat H

Estimated homography.

Definition at line 171 of file matchers.hpp.

std::vector<uchar> inliers_mask

Geometrically consistent matches mask.

Definition at line 169 of file matchers.hpp.

Number of geometrically consistent matches.

Definition at line 170 of file matchers.hpp.