/external/opencv3/modules/imgproc/test/ocl/ |
test_houghlines.cpp | 107 /////////////////////////////// HoughLinesP /////////////////////////////////// 109 PARAM_TEST_CASE(HoughLinesP, int, double, double) 164 OCL_TEST_P(HoughLinesP, RealImage) 168 OCL_OFF(cv::HoughLinesP(src, dst, rhoStep, thetaStep, threshold, minLineLength, maxGap)); 169 OCL_ON(cv::HoughLinesP(usrc, udst, rhoStep, thetaStep, threshold, minLineLength, maxGap)); 178 OCL_INSTANTIATE_TEST_CASE_P(Imgproc, HoughLinesP, Combine(Values(100, 150), // threshold
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_houghLines.cpp | 61 ///////////// HoughLinesP ///////////////////// 66 OCL_PERF_TEST_P(HoughLinesPFixture, HoughLinesP, Combine(Values("cv/shared/pic5.png", "stitching/a1.png"), 83 OCL_TEST_CYCLE() cv::HoughLinesP(usrc, lines, rhoStep, thetaStep, threshold, minLineLength, maxGap);
|
/external/opencv3/samples/cpp/ |
houghlines.cpp | 51 HoughLinesP(dst, lines, 1, CV_PI/180, 50, 50, 10 );
|
/external/opencv3/samples/python2/ |
houghlines.py | 21 if True: # HoughLinesP 22 lines = cv2.HoughLinesP(dst, 1, math.pi/180.0, 40, np.array([]), 50, 10)
|
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
HoughLines_Demo.cpp | 119 HoughLinesP( edges, p_lines, 1, CV_PI/180, min_threshold + p_trackbar, 30, 10 );
|
/external/opencv3/samples/gpu/ |
houghlines.cpp | 44 cv::HoughLinesP(mask, lines_cpu, 1, CV_PI / 180, 50, 60, 5);
|
/external/opencv3/modules/cudaimgproc/perf/ |
perf_hough.cpp | 128 // HoughLinesP 132 PERF_TEST_P(Image, HoughLinesP, 170 TEST_CYCLE() cv::HoughLinesP(mask, cpu_lines, rho, theta, threshold, minLineLength, maxLineGap);
|
/external/opencv3/modules/imgproc/test/ |
test_houghLines.cpp | 153 xml = string(cvtest::TS::ptr()->get_data_path()) + "imgproc/HoughLinesP.xml"; 163 HoughLinesP(dst, lines, rhoStep, thetaStep, threshold, minLineLength, maxGap);
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
screen_finder.py | 174 hlines = cv2.HoughLinesP(self._frame_edges, 1, np.pi / 180, 60, [all...] |
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | [all...] |
/external/opencv3/modules/imgproc/src/ |
hough.cpp | 868 void cv::HoughLinesP(InputArray _image, OutputArray _lines, [all...] |
/external/opencv3/modules/java/src/ |
imgproc+Imgproc.java | [all...] |
imgproc.cpp | [all...] |
/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | [all...] |
/cts/apps/CtsVerifier/libs/ |
opencv3-android.jar | |