Home | History | Annotate | Download | only in test

Lines Matching full:interpolation

72     void remapGold(const cv::Mat& src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal)
108 funcs[interpolation][src.depth()](src, xmap, ymap, dst, borderType, borderVal);
115 PARAM_TEST_CASE(Remap, cv::cuda::DeviceInfo, cv::Size, MatType, Interpolation, BorderType, UseRoi)
120 int interpolation;
132 interpolation = GET_PARAM(3);
164 cv::cuda::remap(loadMat(src, useRoi), dst, loadMat(xmap, useRoi), loadMat(ymap, useRoi), interpolation, borderType, val);
167 remapGold(src, xmap, ymap, dst_gold, interpolation, borderType, val);
176 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),