Home | History | Annotate | Download | only in test

Lines Matching full:interpolation

90     int interpolation = cv::INTER_NEAREST;
92 int flags = interpolation;
97 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode);
136 void warpPerspectiveGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
173 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal);
178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal);
186 PARAM_TEST_CASE(WarpPerspective, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
192 int interpolation;
202 interpolation = GET_PARAM(4);
214 int flags = interpolation;
223 warpPerspectiveGold(src, M, inverse, size, dst_gold, interpolation, borderType, val);
233 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
240 PARAM_TEST_CASE(WarpPerspectiveNPP, cv::cuda::DeviceInfo, MatType, Inverse, Interpolation)
245 int interpolation;
252 interpolation = GET_PARAM(3);
264 int flags = interpolation;
272 warpPerspectiveGold(src, M, inverse, src.size(), dst_gold, interpolation, cv::BORDER_CONSTANT, cv::Scalar::all(0));
281 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))));