HomeSort by relevance Sort by last modified time
    Searched refs:hough (Results 1 - 8 of 8) sorted by null

  /external/opencv3/samples/gpu/
houghlines.cpp 16 cout << "This program demonstrates line finding with the Hough transform." << endl;
62 Ptr<cuda::HoughSegmentDetector> hough = cuda::createHoughSegmentDetector(1.0f, (float) (CV_PI / 180.0f), 50, 5); local
64 hough->detect(d_src, d_lines);
  /external/opencv3/modules/cudaimgproc/src/
hough_segments.cpp 56 namespace hough
136 using namespace cv::cuda::device::hough;
hough_lines.cpp 56 namespace hough
133 using namespace cv::cuda::device::hough;
hough_circles.cpp 56 namespace hough
162 using namespace cv::cuda::device::hough;
  /external/opencv3/modules/cudaimgproc/test/
test_hough.cpp 97 cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::createHoughLinesDetector(rho, theta, threshold); local
100 hough->detect(loadMat(src, useRoi), d_lines);
103 hough->downloadResults(d_lines, lines);
  /external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp 107 cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::createHoughLinesDetector(rho, theta, threshold); local
109 TEST_CYCLE() hough->detect(d_src, d_lines);
156 cv::Ptr<cv::cuda::HoughSegmentDetector> hough = cv::cuda::createHoughSegmentDetector(rho, theta, minLineLength, maxLineGap); local
158 TEST_CYCLE() hough->detect(d_mask, d_lines);
  /external/opencv3/modules/cudaimgproc/src/cuda/
build_point_list.cu 50 namespace hough
  /external/opencv3/
Android.mk 724 modules/imgproc/src/hough.cpp \
    [all...]

Completed in 386 milliseconds