Home
last modified time | relevance | path

Searched refs:HoughLines (Results 1 – 16 of 16) sorted by relevance

/external/opencv3/modules/imgproc/test/ocl/
Dtest_houghlines.cpp27 PARAM_TEST_CASE(HoughLines, double, double, int) in PARAM_TEST_CASE() argument
84 OCL_TEST_P(HoughLines, RealImage) in OCL_TEST_P() argument
88 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
89 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
94 OCL_TEST_P(HoughLines, GeneratedImage) in OCL_TEST_P() argument
100 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
101 OCL_ON(cv::HoughLines(usrc, udst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
174 OCL_INSTANTIATE_TEST_CASE_P(Imgproc, HoughLines, Combine(Values(1, 0.5), // …
/external/opencv3/modules/imgproc/perf/
Dperf_houghLines.cpp14 PERF_TEST_P(Image_RhoStep_ThetaStep_Threshold, HoughLines,
37 TEST_CYCLE() HoughLines(image, lines, rhoStep, thetaStep, threshold);
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_houghLines.cpp30 OCL_PERF_TEST_P(HoughLinesFixture, HoughLines, Combine(OCL_TEST_SIZES,
52 OCL_TEST_CYCLE() cv::HoughLines(usrc, lines, rhoStep, thetaStep, threshold);
/external/opencv3/modules/cudaimgproc/test/
Dtest_hough.cpp52 PARAM_TEST_CASE(HoughLines, cv::cuda::DeviceInfo, cv::Size, UseRoi) in PARAM_TEST_CASE() argument
83 CUDA_TEST_P(HoughLines, Accuracy) in CUDA_TEST_P() argument
111 INSTANTIATE_TEST_CASE_P(CUDA_ImgProc, HoughLines, testing::Combine(
/external/opencv3/samples/python2/
Dhoughlines.py28 lines = cv2.HoughLines(dst, 1, math.pi/180.0, 50, np.array([]), 0, 0)
/external/opencv3/samples/cpp/
Dhoughlines.cpp35 HoughLines(dst, lines, 1, CV_PI/180, 100, 0, 0 ); in main()
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DHoughLines_Demo.cpp92 HoughLines( edges, s_lines, 1, CV_PI/180, min_threshold + s_trackbar, 0, 0 ); in Standard_Hough()
/external/opencv3/doc/py_tutorials/py_imgproc/py_houghlines/
Dpy_houghlines.markdown10 - We will see following functions: **cv2.HoughLines()**, **cv2.HoughLinesP()**
65 Everything explained above is encapsulated in the OpenCV function, \*\*cv2.HoughLines()\*\*. It sim…
80 lines = cv2.HoughLines(edges,1,np.pi/180,200)
/external/opencv3/doc/tutorials/imgproc/imgtrans/hough_lines/
Dhough_lines.markdown9 - Use the OpenCV functions @ref cv::HoughLines and @ref cv::HoughLinesP to detect lines in an
82 - In OpenCV it is implemented with the function @ref cv::HoughLines
127 HoughLines(dst, lines, 1, CV_PI/180, 100, 0, 0 );
/external/opencv3/modules/cudaimgproc/perf/
Dperf_hough.cpp83 PERF_TEST_P(Sz, HoughLines, in PERF_TEST_P() argument
121 TEST_CYCLE() cv::HoughLines(src, cpu_lines, rho, theta, threshold); in PERF_TEST_P()
/external/opencv3/modules/imgproc/test/
Dtest_houghLines.cpp161 HoughLines(dst, lines, rhoStep, thetaStep, threshold, 0, 0); in run_test()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp1675 CV_EXPORTS_W void HoughLines( InputArray image, OutputArray lines,
/external/opencv3/modules/imgproc/src/
Dhough.cpp849 void cv::HoughLines( InputArray _image, OutputArray _lines, in HoughLines() function in cv
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java1207 …public static void HoughLines(Mat image, Mat lines, double rho, double theta, int threshold, doubl… in HoughLines() method in Imgproc
1216 public static void HoughLines(Mat image, Mat lines, double rho, double theta, int threshold) in HoughLines() method in Imgproc
Dimgproc.cpp2446 …cv::HoughLines( image, lines, (double)rho, (double)theta, (int)threshold, (double)srn, (double)stn… in Java_org_opencv_imgproc_Imgproc_HoughLines_10()
2468 cv::HoughLines( image, lines, (double)rho, (double)theta, (int)threshold ); in Java_org_opencv_imgproc_Imgproc_HoughLines_11()
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java1085 Imgproc.HoughLines(img, lines, 1, 3.1415926/180, 100); in testHoughLinesMatMatDoubleDoubleInt()