Home
last modified time | relevance | path

Searched refs:lines1 (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/java/src/
Dimgproc+LineSegmentDetector.java60 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()
Dimgproc.cpp143 Mat& lines1 = *((Mat*)lines1_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()
168 Mat& lines1 = *((Mat*)lines1_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/
Dscreen_finder.py401 lines1 = np.vstack(intersections[:, 1].flat)
405 line1a1 = np.pi - np.arctan2(lines1[:, 1] - points[:, 1],
406 lines1[:, 0] - points[:, 0])
407 line1a2 = np.pi - np.arctan2(lines1[:, 3] - points[:, 1],
408 lines1[:, 2] - points[:, 0])
436 lines1 = lines1[include]
515 lines1[i], lines2[i]))
/external/opencv3/doc/py_tutorials/py_calib3d/py_epipolar_geometry/
Dpy_epipolar_geometry.markdown140 lines1 = cv2.computeCorrespondEpilines(pts2.reshape(-1,1,2), 2,F)
141 lines1 = lines1.reshape(-1,3)
142 img5,img6 = drawlines(img1,img2,lines1,pts1,pts2)
/external/opencv3/modules/imgproc/src/
Dlsd.cpp229 …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
1203 _lines1 = lines1.getMat(); in compareSegments()
/external/opencv/cv/src/
Dcvcalibration.cpp2429 CvPoint3D64f* lines1; in cvStereoRectifyUncalibrated() local
2464 lines1 = (CvPoint3D64f*)_lines1->data.ptr; in cvStereoRectifyUncalibrated()
2478 fabs(m2[i].x*lines1[i].x + in cvStereoRectifyUncalibrated()
2479 m2[i].y*lines1[i].y + in cvStereoRectifyUncalibrated()
2480 lines1[i].z) <= threshold ) in cvStereoRectifyUncalibrated()
2567 CvMat A = cvMat( 1, npoints, CV_64FC3, lines1 ), BxBy, B; in cvStereoRectifyUncalibrated()
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp2452 CvPoint3D64f* lines1; in cvStereoRectifyUncalibrated() local
2487 lines1 = (CvPoint3D64f*)_lines1->data.ptr; in cvStereoRectifyUncalibrated()
2501 fabs(m2[i].x*lines1[i].x + in cvStereoRectifyUncalibrated()
2502 m2[i].y*lines1[i].y + in cvStereoRectifyUncalibrated()
2503 lines1[i].z) <= threshold ) in cvStereoRectifyUncalibrated()
2589 CvMat A = cvMat( 1, npoints, CV_64FC3, lines1 ), BxBy, B; in cvStereoRectifyUncalibrated()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp1019 …CV_WRAP virtual int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputO…