OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HoughLinesDetector
(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
>(); }
70
class HoughLinesDetectorImpl : public
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
332
class CV_EXPORTS
HoughLinesDetector
: public Algorithm
348
/** @brief Downloads results from cuda::
HoughLinesDetector
::detect to host memory.
350
@param d_lines Result of cuda::
HoughLinesDetector
::detect .
373
/** @brief Creates implementation for cuda::
HoughLinesDetector
.
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 415 milliseconds