Lines Matching full:remapimpl
54 template <typename T, template <typename> class Interpolator> void remapImpl(const cv::Mat& src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int borderType, cv::Scalar borderVal)
78 remapImpl<unsigned char, NearestInterpolator>,
79 remapImpl<signed char, NearestInterpolator>,
80 remapImpl<unsigned short, NearestInterpolator>,
81 remapImpl<short, NearestInterpolator>,
82 remapImpl<int, NearestInterpolator>,
83 remapImpl<float, NearestInterpolator>
88 remapImpl<unsigned char, LinearInterpolator>,
89 remapImpl<signed char, LinearInterpolator>,
90 remapImpl<unsigned short, LinearInterpolator>,
91 remapImpl<short, LinearInterpolator>,
92 remapImpl<int, LinearInterpolator>,
93 remapImpl<float, LinearInterpolator>
98 remapImpl<unsigned char, CubicInterpolator>,
99 remapImpl<signed char, CubicInterpolator>,
100 remapImpl<unsigned short, CubicInterpolator>,
101 remapImpl<short, CubicInterpolator>,
102 remapImpl<int, CubicInterpolator>,
103 remapImpl<float, CubicInterpolator>