Searched refs:lines1 (Results 1 - 7 of 7) sorted by relevance
/external/opencv3/modules/java/src/ |
H A D | imgproc+LineSegmentDetector.java | 56 // C++: int compareSegments(Size size, Mat lines1, Mat lines2, Mat& _image = Mat()) 59 //javadoc: LineSegmentDetector::compareSegments(size, lines1, lines2, _image) 60 public int compareSegments(Size size, Mat lines1, Mat lines2, Mat _image) argument 63 int retVal = compareSegments_0(nativeObj, size.width, size.height, lines1.nativeObj, lines2.nativeObj, _image.nativeObj); 68 //javadoc: LineSegmentDetector::compareSegments(size, lines1, lines2) 69 public int compareSegments(Size size, Mat lines1, Mat lines2) argument 72 int retVal = compareSegments_1(nativeObj, size.width, size.height, lines1.nativeObj, lines2.nativeObj); 92 // C++: int compareSegments(Size size, Mat lines1, Mat lines2, Mat& _image = Mat())
|
H A D | imgproc.cpp | 130 // int compareSegments(Size size, Mat lines1, Mat lines2, Mat& _image = Mat()) 143 Mat& lines1 = *((Mat*)lines1_nativeObj); local 146 int _retval_ = (*me)->compareSegments( size, lines1, lines2, _image ); 168 Mat& lines1 = *((Mat*)lines1_nativeObj); local 170 int _retval_ = (*me)->compareSegments( size, lines1, lines2 );
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
H A D | screen_finder.py | 401 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/modules/imgproc/src/ |
H A D | lsd.cpp | 222 * @param size The size of the image, where lines1 and lines2 were found. 223 * @param lines1 The first lines that need to be drawn. Color - Blue. 227 * @return The number of mismatching pixels between lines1 and lines2. 229 int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputOutputArray _image = noArray()); 1192 int LineSegmentDetectorImpl::compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputOutputArray _image) argument 1203 _lines1 = lines1.getMat();
|
/external/opencv/cv/src/ |
H A D | cvcalibration.cpp | 2429 CvPoint3D64f* lines1; 2464 lines1 = (CvPoint3D64f*)_lines1->data.ptr; 2478 fabs(m2[i].x*lines1[i].x + 2479 m2[i].y*lines1[i].y + 2480 lines1[i].z) <= threshold ) 2567 CvMat A = cvMat( 1, npoints, CV_64FC3, lines1 ), BxBy, B;
|
/external/opencv3/modules/calib3d/src/ |
H A D | calibration.cpp | 2452 CvPoint3D64f* lines1; 2487 lines1 = (CvPoint3D64f*)_lines1->data.ptr; 2501 fabs(m2[i].x*lines1[i].x + 2502 m2[i].y*lines1[i].y + 2503 lines1[i].z) <= threshold ) 2589 CvMat A = cvMat( 1, npoints, CV_64FC3, lines1 ), BxBy, B;
|
/external/opencv3/modules/imgproc/include/opencv2/ |
H A D | imgproc.hpp | 1013 @param size The size of the image, where lines1 and lines2 were found. 1014 @param lines1 The first group of lines that needs to be drawn. It is visualized in blue color. 1017 in order for lines1 and lines2 to be drawn in the above mentioned colors. 1019 CV_WRAP virtual int compareSegments(const Size& size, InputArray lines1, InputArray lines2, InputOutputArray _image = noArray()) = 0;
|
Completed in 264 milliseconds