OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UseRoi
(Results
1 - 20
of
20
) sorted by null
/external/opencv3/modules/imgproc/test/ocl/
test_canny.cpp
59
IMPLEMENT_PARAM_CLASS(
UseRoi
, bool)
61
PARAM_TEST_CASE(Canny, Channels, AppertureSize, L2gradient,
UseRoi
)
119
testing::Values(
UseRoi
(false),
UseRoi
(true))));
/external/opencv3/modules/cudawarping/test/
test_pyramids.cpp
52
PARAM_TEST_CASE(PyrDown, cv::cuda::DeviceInfo, cv::Size, MatType,
UseRoi
)
57
bool
useRoi
;
64
useRoi
= GET_PARAM(3);
74
cv::cuda::GpuMat dst = createMat(cv::Size((size.width + 1) / 2, (size.height + 1) / 2), type,
useRoi
);
75
cv::cuda::pyrDown(loadMat(src,
useRoi
), dst);
92
PARAM_TEST_CASE(PyrUp, cv::cuda::DeviceInfo, cv::Size, MatType,
UseRoi
)
97
bool
useRoi
;
104
useRoi
= GET_PARAM(3);
114
cv::cuda::GpuMat dst = createMat(cv::Size(size.width * 2, size.height * 2), type,
useRoi
);
115
cv::cuda::pyrUp(loadMat(src,
useRoi
), dst)
[
all
...]
test_resize.cpp
120
PARAM_TEST_CASE(Resize, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation,
UseRoi
)
127
bool
useRoi
;
136
useRoi
= GET_PARAM(5);
146
cv::cuda::GpuMat dst = createMat(cv::Size(cv::saturate_cast<int>(src.cols * coeff), cv::saturate_cast<int>(src.rows * coeff)), type,
useRoi
);
147
cv::cuda::resize(loadMat(src,
useRoi
), dst, cv::Size(), coeff, coeff, interpolation);
165
PARAM_TEST_CASE(ResizeSameAsHost, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation,
UseRoi
)
172
bool
useRoi
;
181
useRoi
= GET_PARAM(5);
192
cv::cuda::GpuMat dst = createMat(cv::Size(cv::saturate_cast<int>(src.cols * coeff), cv::saturate_cast<int>(src.rows * coeff)), type,
useRoi
);
193
cv::cuda::resize(loadMat(src,
useRoi
), dst, cv::Size(), coeff, coeff, interpolation)
[
all
...]