Searched refs:corners_ (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | seam_finders.hpp | 100 std::vector<Point> corners_; member in cv::detail::PairwiseSeamFinder 143 : src_(&images[0]), corners_(&corners[0]) {} in ImagePairLess() 147 Point c1 = corners_[l.first] + Point(src_[l.first].cols / 2, src_[l.first].rows / 2); in operator ()() 148 Point c2 = corners_[l.second] + Point(src_[l.second].cols / 2, src_[l.second].rows / 2); in operator ()() 151 c1 = corners_[r.first] + Point(src_[r.first].cols / 2, src_[r.first].rows / 2); in operator ()() 152 c2 = corners_[r.second] + Point(src_[r.second].cols / 2, src_[r.second].rows / 2); in operator ()() 160 const Point *corners_; member in cv::detail::DpSeamFinder::ImagePairLess
|
/external/opencv3/modules/stitching/src/ |
D | seam_finders.cpp | 64 corners_ = corners; in find() 79 if (overlapRoi(corners_[i], corners_[j], sizes_[i], sizes_[j], roi)) in run() 103 corners_ = corners; in find() 119 Point tl1 = corners_[first], tl2 = corners_[second]; in findInPair() 1224 Point tl1 = corners_[first], tl2 = corners_[second]; in findInPair() 1367 Point tl1 = corners_[first], tl2 = corners_[second]; in findInPair()
|