HoughSegmentDetector  429 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp CV_EXPORTS Ptr<HoughSegmentDetector> createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines = 4096);
HoughSegmentDetector  156 modules/cudaimgproc/perf/perf_hough.cpp         cv::Ptr<cv::cuda::HoughSegmentDetector> hough = cv::cuda::createHoughSegmentDetector(rho, theta, minLineLength, maxLineGap);
HoughSegmentDetector   50 modules/cudaimgproc/src/hough_segments.cpp Ptr<cuda::HoughSegmentDetector> cv::cuda::createHoughSegmentDetector(float, float, int, int, int) { throw_no_cuda(); return Ptr<HoughSegmentDetector>(); }
HoughSegmentDetector   74 modules/cudaimgproc/src/hough_segments.cpp     class HoughSegmentDetectorImpl : public HoughSegmentDetector
HoughSegmentDetector  181 modules/cudaimgproc/src/hough_segments.cpp Ptr<HoughSegmentDetector> cv::cuda::createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines)
HoughSegmentDetector   62 samples/gpu/houghlines.cpp         Ptr<cuda::HoughSegmentDetector> hough = cuda::createHoughSegmentDetector(1.0f, (float) (CV_PI / 180.0f), 50, 5);