Lines Matching full:interpolation
89 int interpolation = cv::INTER_NEAREST;
91 int flags = interpolation;
96 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode);
133 void warpAffineGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
170 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
183 PARAM_TEST_CASE(WarpAffine, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
189 int interpolation;
199 interpolation = GET_PARAM(4);
211 int flags = interpolation;
220 warpAffineGold(src, M, inverse, size, dst_gold, interpolation, borderType, val);
230 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
237 PARAM_TEST_CASE(WarpAffineNPP, cv::cuda::DeviceInfo, MatType, Inverse, Interpolation)
242 int interpolation;
249 interpolation = GET_PARAM(3);
261 int flags = interpolation;
269 warpAffineGold(src, M, inverse, src.size(), dst_gold, interpolation, cv::BORDER_CONSTANT, cv::Scalar::all(0));
278 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))));