Searched refs:lines2 (Results 1 – 8 of 8) sorted by relevance
/external/opencv3/modules/java/src/ |
D | imgproc+LineSegmentDetector.java | 60 public int compareSegments(Size size, Mat lines1, Mat lines2, Mat _image) in compareSegments() argument 63 …int retVal = compareSegments_0(nativeObj, size.width, size.height, lines1.nativeObj, lines2.native… in compareSegments() 69 public int compareSegments(Size size, Mat lines1, Mat lines2) in compareSegments() argument 72 …int retVal = compareSegments_1(nativeObj, size.width, size.height, lines1.nativeObj, lines2.native… in compareSegments()
|
D | imgproc.cpp | 144 Mat& lines2 = *((Mat*)lines2_nativeObj); in Java_org_opencv_imgproc_LineSegmentDetector_compareSegments_10() local 146 int _retval_ = (*me)->compareSegments( size, lines1, lines2, _image ); in Java_org_opencv_imgproc_LineSegmentDetector_compareSegments_10() 169 Mat& lines2 = *((Mat*)lines2_nativeObj); in Java_org_opencv_imgproc_LineSegmentDetector_compareSegments_11() local 170 int _retval_ = (*me)->compareSegments( size, lines1, lines2 ); in Java_org_opencv_imgproc_LineSegmentDetector_compareSegments_11()
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | screen_finder.py | 402 lines2 = np.vstack(intersections[:, 2].flat) 409 line2a1 = np.pi - np.arctan2(lines2[:, 1] - points[:, 1], 410 lines2[:, 0] - points[:, 0]) 411 line2a2 = np.pi - np.arctan2(lines2[:, 3] - points[:, 1], 412 lines2[:, 2] - points[:, 0]) 437 lines2 = lines2[include] 515 lines1[i], lines2[i]))
|
/external/opencv3/doc/py_tutorials/py_calib3d/py_epipolar_geometry/ |
D | py_epipolar_geometry.markdown | 146 lines2 = cv2.computeCorrespondEpilines(pts1.reshape(-1,1,2), 1,F) 147 lines2 = lines2.reshape(-1,3) 148 img3,img4 = drawlines(img2,img1,lines2,pts2,pts1)
|
/external/opencv3/modules/imgproc/src/ |
D | lsd.cpp | 229 …int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputOutputArray _imag… 1192 int LineSegmentDetectorImpl::compareSegments(const Size& size, InputArray lines1, InputArray lines2… in compareSegments() argument 1204 _lines2 = lines2.getMat(); in compareSegments()
|
/external/opencv/cv/src/ |
D | cvcalibration.cpp | 2430 CvPoint3D64f* lines2; in cvStereoRectifyUncalibrated() local 2465 lines2 = (CvPoint3D64f*)_lines2->data.ptr; in cvStereoRectifyUncalibrated() 2475 if( fabs(m1[i].x*lines2[i].x + in cvStereoRectifyUncalibrated() 2476 m1[i].y*lines2[i].y + in cvStereoRectifyUncalibrated() 2477 lines2[i].z) <= threshold && in cvStereoRectifyUncalibrated()
|
/external/opencv3/modules/calib3d/src/ |
D | calibration.cpp | 2453 CvPoint3D64f* lines2; in cvStereoRectifyUncalibrated() local 2488 lines2 = (CvPoint3D64f*)_lines2->data.ptr; in cvStereoRectifyUncalibrated() 2498 if( fabs(m1[i].x*lines2[i].x + in cvStereoRectifyUncalibrated() 2499 m1[i].y*lines2[i].y + in cvStereoRectifyUncalibrated() 2500 lines2[i].z) <= threshold && in cvStereoRectifyUncalibrated()
|
/external/opencv3/modules/imgproc/include/opencv2/ |
D | imgproc.hpp | 1019 …CV_WRAP virtual int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputO…
|