HoughLinesDetector  382 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp CV_EXPORTS Ptr<HoughLinesDetector> createHoughLinesDetector(float rho, float theta, int threshold, bool doSort = false, int maxLines = 4096);
HoughLinesDetector  107 modules/cudaimgproc/perf/perf_hough.cpp         cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::createHoughLinesDetector(rho, theta, threshold);
HoughLinesDetector   50 modules/cudaimgproc/src/hough_lines.cpp Ptr<cuda::HoughLinesDetector> cv::cuda::createHoughLinesDetector(float, float, int, bool, int) { throw_no_cuda(); return Ptr<HoughLinesDetector>(); }
HoughLinesDetector   70 modules/cudaimgproc/src/hough_lines.cpp     class HoughLinesDetectorImpl : public HoughLinesDetector
HoughLinesDetector  206 modules/cudaimgproc/src/hough_lines.cpp Ptr<HoughLinesDetector> cv::cuda::createHoughLinesDetector(float rho, float theta, int threshold, bool doSort, int maxLines)
HoughLinesDetector   97 modules/cudaimgproc/test/test_hough.cpp     cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::createHoughLinesDetector(rho, theta, threshold);