Searched refs:tl2 (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/modules/stitching/src/ |
D | util.cpp | 101 bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi) in overlapRoi() argument 103 int x_tl = std::max(tl1.x, tl2.x); in overlapRoi() 104 int y_tl = std::max(tl1.y, tl2.y); in overlapRoi() 105 int x_br = std::min(tl1.x + sz1.width, tl2.x + sz2.width); in overlapRoi() 106 int y_br = std::min(tl1.y + sz1.height, tl2.y + sz2.height); in overlapRoi()
|
D | seam_finders.cpp | 119 Point tl1 = corners_[first], tl2 = corners_[second]; in findInPair() local 133 int y2 = roi.y - tl2.y + y; in findInPair() 134 int x2 = roi.x - tl2.x + x; in findInPair() 157 mask2.at<uchar>(roi.y - tl2.y + y, roi.x - tl2.x + x) = 0; in findInPair() 203 const Mat &image1, const Mat &image2, Point tl1, Point tl2, in process() argument 209 Point intersectTl(std::max(tl1.x, tl2.x), std::max(tl1.y, tl2.y)); in process() 211 Point intersectBr(std::min(tl1.x + image1.cols, tl2.x + image2.cols), in process() 212 std::min(tl1.y + image1.rows, tl2.y + image2.rows)); in process() 217 unionTl_ = Point(std::min(tl1.x, tl2.x), std::min(tl1.y, tl2.y)); in process() 219 unionBr_ = Point(std::max(tl1.x + image1.cols, tl2.x + image2.cols), in process() [all …]
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
D | p5.cpp | 52 auto tl2 = []() {}; in test_exception_spec() local 54 static_assert(!noexcept(tl2()), "lambda can throw"); in test_exception_spec()
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
D | seam_finders.hpp | 179 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 186 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 197 const Mat &image1, const Mat &image2, Point tl1, Point tl2, 201 const Mat &image1, const Mat &image2, Point tl1, Point tl2, int comp,
|
D | util.hpp | 153 CV_EXPORTS bool overlapRoi(Point tl1, Point tl2, Size sz1, Size sz2, Rect &roi);
|