OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:d_image
(Results
1 - 6
of
6
) sorted by null
/external/opencv3/modules/cudaimgproc/perf/
perf_gftt.cpp
71
const cv::cuda::GpuMat
d_image
(image);
74
TEST_CYCLE() d_detector->detect(
d_image
, pts);
perf_match_template.cpp
75
const cv::cuda::GpuMat
d_image
(image);
81
TEST_CYCLE() alg->match(
d_image
, d_templ, dst);
117
const cv::cuda::GpuMat
d_image
(image);
123
TEST_CYCLE() alg->match(
d_image
, d_templ, dst);
perf_canny.cpp
71
const cv::cuda::GpuMat
d_image
(image);
76
TEST_CYCLE() canny->detect(
d_image
, dst);
/external/opencv3/modules/cudaarithm/perf/
perf_arithm.cpp
229
cv::cuda::GpuMat
d_image
= cv::cuda::createContinuous(size, CV_32FC1);
local
230
d_image
.upload(image);
239
TEST_CYCLE() convolution->convolve(
d_image
, d_templ, dst, ccorr);
/external/opencv3/modules/cudalegacy/perf/
perf_labeling.cpp
154
cv::cuda::GpuMat
d_image
(image);
157
TEST_CYCLE() cv::cuda::connectivityMask(
d_image
, mask, cv::Scalar::all(0), cv::Scalar::all(2));
/external/opencv3/samples/gpu/
generalized_hough.cpp
131
cuda::GpuMat
d_image
(image);
138
alg->detect(
d_image
, d_position);
Completed in 327 milliseconds