OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hough
(Results
1 - 3
of
3
) 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/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);
Completed in 241 milliseconds