Home
last modified time | relevance | path

Searched defs:MatchesInfo (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
Dmatchers.hpp161 struct CV_EXPORTS MatchesInfo struct
167 int src_img_idx, dst_img_idx; //!< Images indices (optional)
168 std::vector<DMatch> matches;
169 std::vector<uchar> inliers_mask; //!< Geometrically consistent matches mask
170 int num_inliers; //!< Number of geometrically consistent matches
171 Mat H; //!< Estimated homography
172 double confidence; //!< Confidence two images are from the same panorama
/external/opencv3/modules/stitching/src/
Dmatchers.cpp508 MatchesInfo::MatchesInfo() : src_img_idx(-1), dst_img_idx(-1), num_inliers(0), confidence(0) {} in MatchesInfo() function in cv::detail::MatchesInfo
510 MatchesInfo::MatchesInfo(const MatchesInfo &other) { *this = other; } in MatchesInfo() function in cv::detail::MatchesInfo