Lines Matching full:interpolation
92 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Border_Mode, cv::Size, MatDepth, MatCn, Interpolation, BorderMode, RemapMode);
98 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
107 const int interpolation = GET_PARAM(3);
127 TEST_CYCLE() cv::cuda::remap(d_src, dst, d_xmap, d_ymap, interpolation, borderMode);
135 TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode);
144 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Scale, cv::Size, MatDepth, MatCn, Interpolation, double);
150 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
158 const int interpolation = GET_PARAM(3);
171 TEST_CYCLE() cv::cuda::resize(d_src, dst, cv::Size(), f, f, interpolation);
179 TEST_CYCLE() cv::resize(src, dst, cv::Size(), f, f, interpolation);
201 const int interpolation = cv::INTER_AREA;
214 TEST_CYCLE() cv::cuda::resize(d_src, dst, cv::Size(), f, f, interpolation);
222 TEST_CYCLE() cv::resize(src, dst, cv::Size(), f, f, interpolation);
231 DEF_PARAM_TEST(Sz_Depth_Cn_Inter_Border, cv::Size, MatDepth, MatCn, Interpolation, BorderMode);
237 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
245 const int interpolation = GET_PARAM(3);
266 TEST_CYCLE() cv::cuda::warpAffine(d_src, dst, M, size, interpolation, borderMode);
274 TEST_CYCLE() cv::warpAffine(src, dst, M, size, interpolation, borderMode);
287 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
295 const int interpolation = GET_PARAM(3);
314 TEST_CYCLE() cv::cuda::warpPerspective(d_src, dst, M, size, interpolation, borderMode);
322 TEST_CYCLE() cv::warpPerspective(src, dst, M, size, interpolation, borderMode);
331 DEF_PARAM_TEST(Sz_Depth_Cn_Inter, cv::Size, MatDepth, MatCn, Interpolation);
337 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))))
342 const int interpolation = GET_PARAM(3);
354 TEST_CYCLE() cv::cuda::rotate(d_src, dst, size, 30.0, 0, 0, interpolation);