OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createHoughLinesDetector
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudaimgproc/src/
hough_lines.cpp
50
Ptr<cuda::HoughLinesDetector> cv::cuda::
createHoughLinesDetector
(float, float, int, bool, int) { throw_no_cuda(); return Ptr<HoughLinesDetector>(); }
206
Ptr<HoughLinesDetector> cv::cuda::
createHoughLinesDetector
(float rho, float theta, int threshold, bool doSort, int maxLines)
/external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp
382
CV_EXPORTS Ptr<HoughLinesDetector>
createHoughLinesDetector
(float rho, float theta, int threshold, bool doSort = false, int maxLines = 4096);
/external/opencv3/modules/cudaimgproc/test/
test_hough.cpp
97
cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::
createHoughLinesDetector
(rho, theta, threshold);
/external/opencv3/modules/cudaimgproc/perf/
perf_hough.cpp
107
cv::Ptr<cv::cuda::HoughLinesDetector> hough = cv::cuda::
createHoughLinesDetector
(rho, theta, threshold);
Completed in 187 milliseconds