tl 388 modules/core/include/opencv2/core/types.hpp Point_<_Tp> tl() const; tl 152 modules/core/misc/java/test/RectTest.java p_tl = rect.tl(); tl 297 modules/core/test/test_io.cpp FileNode tl = fs["test_list"]; tl 298 modules/core/test/test_io.cpp if( tl.type() != FileNode::SEQ || tl.size() != 6 || tl 299 modules/core/test/test_io.cpp fabs((double)tl[0] - 0.0000000000001) >= DBL_EPSILON || tl 300 modules/core/test/test_io.cpp (int)tl[1] != 2 || tl 301 modules/core/test/test_io.cpp fabs((double)tl[2] - CV_PI) >= DBL_EPSILON || tl 302 modules/core/test/test_io.cpp (int)tl[3] != -3435345 || tl 303 modules/core/test/test_io.cpp (String)tl[4] != "2-502 2-029 3egegeg" || tl 304 modules/core/test/test_io.cpp tl[5].type() != FileNode::MAP || tl[5].size() != 3 || tl 305 modules/core/test/test_io.cpp (int)tl[5]["month"] != 12 || tl 306 modules/core/test/test_io.cpp (int)tl[5]["day"] != 31 || tl 307 modules/core/test/test_io.cpp (int)tl[5]["year"] != 1969 ) tl 587 modules/imgproc/misc/java/test/ImgprocTest.java Imgproc.rectangle(img, r.tl(), r.br(), new Scalar(0), Core.FILLED); tl 141 modules/imgproc/src/drawing.cpp Point tl = img_rect.tl(); tl 142 modules/imgproc/src/drawing.cpp pt1 -= tl; pt2 -= tl; tl 144 modules/imgproc/src/drawing.cpp pt1 += tl; pt2 += tl; tl 1732 modules/imgproc/src/drawing.cpp rectangle( img, rec.tl(), rec.br() - Point(1<<shift,1<<shift), tl 327 modules/objdetect/src/cascadedetect.cpp hitCenter = (rectList[i].tl() + rectList[i].br())*(0.5); //center of rectangles tl 936 modules/objdetect/src/detection_based_tracker.cpp Point tl(lastPositions[k].tl()); tl 939 modules/objdetect/src/detection_based_tracker.cpp c1=tl; tl 952 modules/objdetect/src/detection_based_tracker.cpp Point tl(lastPositions[k].tl()); tl 955 modules/objdetect/src/detection_based_tracker.cpp c1=tl; tl 963 modules/objdetect/src/detection_based_tracker.cpp Point2f tl=center-Point2f((float)w*0.5f,(float)h*0.5f); tl 964 modules/objdetect/src/detection_based_tracker.cpp Rect res(cvRound(tl.x), cvRound(tl.y), cvRound(w), cvRound(h)); tl 1003 modules/objdetect/src/detection_based_tracker.cpp Rect curres(tmpobjects[i].tl() + r1.tl(), tmpobjects[i].size()); tl 1442 modules/objdetect/src/hog.cpp pt0 = cache.getWindow(paddedImgSize, winStride, (int)i).tl() - Point(padding); tl 1508 modules/objdetect/src/hog.cpp pt0 = cache.getWindow(paddedImgSize, winStride, (int)i).tl() - Point(padding); tl 1048 modules/objdetect/test/test_cascadeandhog.cpp pt0 = cache.getWindow(paddedImgSize, winStride, (int)i).tl() - Point(padding); tl 1150 modules/objdetect/test/test_cascadeandhog.cpp pt0 = cache.getWindow(paddedImgSize, winStride, (int)i).tl() - Point(padding); tl 80 modules/stitching/include/opencv2/stitching/detail/blenders.hpp virtual void feed(InputArray img, InputArray mask, Point tl); tl 104 modules/stitching/include/opencv2/stitching/detail/blenders.hpp void feed(InputArray img, InputArray mask, Point tl); tl 131 modules/stitching/include/opencv2/stitching/detail/blenders.hpp void feed(InputArray img, InputArray mask, Point tl); tl 68 modules/stitching/include/opencv2/stitching/detail/timelapsers.hpp virtual void process(InputArray img, InputArray mask, Point tl); tl 103 modules/stitching/include/opencv2/stitching/detail/warpers_inl.hpp return dst_roi.tl(); tl 80 modules/stitching/src/blenders.cpp void Blender::feed(InputArray _img, InputArray _mask, Point tl) tl 89 modules/stitching/src/blenders.cpp int dx = tl.x - dst_roi_.x; tl 90 modules/stitching/src/blenders.cpp int dy = tl.y - dst_roi_.y; tl 129 modules/stitching/src/blenders.cpp void FeatherBlender::feed(InputArray _img, InputArray mask, Point tl) tl 141 modules/stitching/src/blenders.cpp int dx = tl.x - dst_roi_.x; tl 142 modules/stitching/src/blenders.cpp int dy = tl.y - dst_roi_.y; tl 275 modules/stitching/src/blenders.cpp void MultiBandBlender::feed(InputArray _img, InputArray mask, Point tl) tl 287 modules/stitching/src/blenders.cpp Point tl_new(std::max(dst_roi_.x, tl.x - gap), tl 288 modules/stitching/src/blenders.cpp std::max(dst_roi_.y, tl.y - gap)); tl 289 modules/stitching/src/blenders.cpp Point br_new(std::min(dst_roi_.br().x, tl.x + img.cols + gap), tl 290 modules/stitching/src/blenders.cpp std::min(dst_roi_.br().y, tl.y + img.rows + gap)); tl 310 modules/stitching/src/blenders.cpp int top = tl.y - tl_new.y; tl 311 modules/stitching/src/blenders.cpp int left = tl.x - tl_new.x; tl 312 modules/stitching/src/blenders.cpp int bottom = br_new.y - tl.y - img.rows; tl 313 modules/stitching/src/blenders.cpp int right = br_new.x - tl.x - img.cols; tl 96 modules/stitching/src/exposure_compensate.cpp subimg1 = images[i](Rect(roi.tl() - corners[i], roi.br() - corners[i])).getMat(ACCESS_READ); tl 97 modules/stitching/src/exposure_compensate.cpp subimg2 = images[j](Rect(roi.tl() - corners[j], roi.br() - corners[j])).getMat(ACCESS_READ); tl 99 modules/stitching/src/exposure_compensate.cpp submask1 = masks[i].first(Rect(roi.tl() - corners[i], roi.br() - corners[i])).getMat(ACCESS_READ); tl 100 modules/stitching/src/exposure_compensate.cpp submask2 = masks[j].first(Rect(roi.tl() - corners[j], roi.br() - corners[j])).getMat(ACCESS_READ); tl 800 modules/stitching/src/seam_finders.cpp Point src = p1 - roi.tl(); tl 801 modules/stitching/src/seam_finders.cpp Point dst = p2 - roi.tl(); tl 903 modules/stitching/src/seam_finders.cpp seam.push_back(p + roi.tl()); tl 907 modules/stitching/src/seam_finders.cpp for (; p.x != src.x; seam.push_back(p + roi.tl())) tl 916 modules/stitching/src/seam_finders.cpp for (; p.y != src.y; seam.push_back(p + roi.tl())) tl 262 modules/stitching/src/stitcher.cpp corners[i] = roi.tl(); tl 436 modules/stitching/src/stitcher.cpp Point tl(cvRound(rois_[i][j].x * work_scale_), cvRound(rois_[i][j].y * work_scale_)); tl 438 modules/stitching/src/stitcher.cpp rois[j] = Rect(tl, br); tl 66 modules/stitching/src/timelapsers.cpp void Timelapser::process(InputArray _img, InputArray /*_mask*/, Point tl) tl 74 modules/stitching/src/timelapsers.cpp int dx = tl.x - dst_roi_.x; tl 75 modules/stitching/src/timelapsers.cpp int dy = tl.y - dst_roi_.y; tl 83 modules/stitching/src/timelapsers.cpp if (test_point(Point(tl.x + x, tl.y + y))) tl 128 modules/stitching/src/util.cpp Point tl(std::numeric_limits<int>::max(), std::numeric_limits<int>::max()); tl 132 modules/stitching/src/util.cpp tl.x = std::min(tl.x, corners[i].x); tl 133 modules/stitching/src/util.cpp tl.y = std::min(tl.y, corners[i].y); tl 137 modules/stitching/src/util.cpp return Rect(tl, br); tl 143 modules/stitching/src/util.cpp Point tl(std::numeric_limits<int>::min(), std::numeric_limits<int>::min()); tl 147 modules/stitching/src/util.cpp tl.x = std::max(tl.x, corners[i].x); tl 148 modules/stitching/src/util.cpp tl.y = std::max(tl.y, corners[i].y); tl 152 modules/stitching/src/util.cpp return Rect(tl, br); tl 158 modules/stitching/src/util.cpp Point tl(std::numeric_limits<int>::max(), std::numeric_limits<int>::max()); tl 161 modules/stitching/src/util.cpp tl.x = std::min(tl.x, corners[i].x); tl 162 modules/stitching/src/util.cpp tl.y = std::min(tl.y, corners[i].y); tl 164 modules/stitching/src/util.cpp return tl; tl 162 modules/stitching/src/warpers.cpp return dst_roi.tl(); tl 354 modules/stitching/src/warpers.cpp return dst_roi.tl(); tl 403 modules/stitching/src/warpers.cpp return dst_roi.tl(); tl 93 modules/stitching/src/warpers_cuda.cpp device::imgproc::buildWarpPlaneMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(), tl 119 modules/stitching/src/warpers_cuda.cpp device::imgproc::buildWarpSphericalMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(), scale, StreamAccessor::getStream(stream)); tl 144 modules/stitching/src/warpers_cuda.cpp device::imgproc::buildWarpCylindricalMaps(dst_roi.tl().x, dst_roi.tl().y, map_x, map_y, K_Rinv.ptr<float>(), R_Kinv.ptr<float>(), scale, StreamAccessor::getStream(stream)); tl 206 modules/stitching/src/warpers_cuda.cpp return dst_roi.tl(); tl 250 modules/stitching/src/warpers_cuda.cpp return dst_roi.tl(); tl 296 modules/stitching/src/warpers_cuda.cpp return dst_roi.tl(); tl 197 samples/android/face-detection/src/org/opencv/samples/facedetect/FdActivity.java Imgproc.rectangle(mRgba, facesArray[i].tl(), facesArray[i].br(), FACE_RECT_COLOR, 3); tl 761 samples/cpp/stitching_detailed.cpp corners[i] = roi.tl(); tl 20 samples/cpp/tutorial_code/HighGUI/GDAL_IO/gdal-image.cpp cv::Point2d tl( -122.441017, 37.815664 ); tl 136 samples/cpp/tutorial_code/HighGUI/GDAL_IO/gdal-image.cpp cv::Point2d leftSide = lerp(tl, bl, ry); tl 82 samples/cpp/tutorial_code/ShapeDescriptors/generalContours_demo1.cpp rectangle( drawing, boundRect[i].tl(), boundRect[i].br(), color, 2, 8, 0 ); tl 338 samples/gpu/hog.cpp rectangle(img_to_show, r.tl(), r.br(), Scalar(0, 255, 0), 3); tl 225 samples/tapi/hog.cpp rectangle(img_to_show, r.tl(), r.br(), Scalar(0, 255, 0), 3);