Home
last modified time | relevance | path

Searched refs:borderVal (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/cudawarping/test/
Dinterpolation.hpp49 …dVal(const cv::Mat& src, int y, int x, int c, int border_type, cv::Scalar borderVal = cv::Scalar()) in readVal() argument
52 …0 && x < src.cols) ? src.at<T>(y, x * src.channels() + c) : cv::saturate_cast<T>(borderVal.val[c]); in readVal()
59 …(const cv::Mat& src, float y, float x, int c, int border_type, cv::Scalar borderVal = cv::Scalar()) in getValue()
61 return readVal<T>(src, int(y), int(x), c, border_type, borderVal); in getValue()
67 …(const cv::Mat& src, float y, float x, int c, int border_type, cv::Scalar borderVal = cv::Scalar()) in getValue()
76 res += readVal<T>(src, y1, x1, c, border_type, borderVal) * ((x2 - x) * (y2 - y)); in getValue()
77 res += readVal<T>(src, y1, x2, c, border_type, borderVal) * ((x - x1) * (y2 - y)); in getValue()
78 res += readVal<T>(src, y2, x1, c, border_type, borderVal) * ((x2 - x) * (y - y1)); in getValue()
79 res += readVal<T>(src, y2, x2, c, border_type, borderVal) * ((x - x1) * (y - y1)); in getValue()
104 …(const cv::Mat& src, float y, float x, int c, int border_type, cv::Scalar borderVal = cv::Scalar()) in getValue()
[all …]
Dtest_remap.cpp54 … src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int borderType, cv::Scalar borderVal) in remapImpl() argument
67 …terpolator<T>::getValue(src, ymap.at<float>(y, x), xmap.at<float>(y, x), c, borderType, borderVal); in remapImpl()
72 …& xmap, const cv::Mat& ymap, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) in remapGold() argument
74 …src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int borderType, cv::Scalar borderVal); in remapGold()
108 funcs[interpolation][src.depth()](src, xmap, ymap, dst, borderType, borderVal); in remapGold()
Dtest_warp_affine.cpp114 …cv::Mat& src, const cv::Mat& M, cv::Size dsize, cv::Mat& dst, int borderType, cv::Scalar borderVal) in warpAffineImpl() argument
128 … dst.at<T>(y, x * cn + c) = Interpolator<T>::getValue(src, ycoo, xcoo, c, borderType, borderVal); in warpAffineImpl()
133 …ool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) in warpAffineGold() argument
135 …v::Mat& src, const cv::Mat& M, cv::Size dsize, cv::Mat& dst, int borderType, cv::Scalar borderVal); in warpAffineGold()
170 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal); in warpAffineGold()
175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal); in warpAffineGold()
Dtest_warp_perspective.cpp115 …cv::Mat& src, const cv::Mat& M, cv::Size dsize, cv::Mat& dst, int borderType, cv::Scalar borderVal) in warpPerspectiveImpl() argument
131 … dst.at<T>(y, x * cn + c) = Interpolator<T>::getValue(src, ycoo, xcoo, c, borderType, borderVal); in warpPerspectiveImpl()
136 …ool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) in warpPerspectiveGold() argument
138 …v::Mat& src, const cv::Mat& M, cv::Size dsize, cv::Mat& dst, int borderType, cv::Scalar borderVal); in warpPerspectiveGold()
173 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal); in warpPerspectiveGold()
178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal); in warpPerspectiveGold()
/external/opencv3/modules/cudafilters/include/opencv2/
Dcudafilters.hpp103 … int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0));
121 … int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0));
140 … int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0));
276 … int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0));
288 … int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0));
302 …pe, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)…
313 …pe, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)…
/external/opencv3/modules/cudafilters/src/
Dfiltering.cpp99 …NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal);
116 …PPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal) : in NPPBoxFilter() argument
117 … ksize_(ksize), anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) in NPPBoxFilter()
165 …eateBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal) in createBoxFilter() argument
172 return makePtr<NPPBoxFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal); in createBoxFilter()
191 …ilter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar borderVal);
208 …ter(int srcType, int dstType, InputArray _kernel, Point anchor, int borderMode, Scalar borderVal) : in LinearFilter() argument
209 anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) in LinearFilter()
273 …Filter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar borderVal) in createLinearFilter() argument
280 return makePtr<LinearFilter>(srcType, dstType, kernel, anchor, borderMode, borderVal); in createLinearFilter()
[all …]