Searched refs:border_type (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudawarping/test/ |
D | interpolation.hpp | 49 template <typename T> T readVal(const cv::Mat& src, int y, int x, int c, int border_type, cv::Scala… in readVal() argument 51 if (border_type == cv::BORDER_CONSTANT) in readVal() 54 … src.at<T>(cv::borderInterpolate(y, src.rows, border_type), cv::borderInterpolate(x, src.cols, bor… in readVal() 59 …static T getValue(const cv::Mat& src, float y, float x, int c, int border_type, cv::Scalar borderV… in getValue() 61 return readVal<T>(src, int(y), int(x), c, border_type, borderVal); in getValue() 67 …static T getValue(const cv::Mat& src, float y, float x, int c, int border_type, cv::Scalar borderV… 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() [all …]
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | corners.cu | 135 …block_size, float k, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int border_type, cudaStream_t s… in cornerHarris_gpu() argument 143 switch (border_type) in cornerHarris_gpu() 247 …_gpu(int block_size, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int border_type, cudaStream_t s… in cornerMinEigenVal_gpu() argument 255 switch (border_type) in cornerMinEigenVal_gpu()
|
/external/opencv3/modules/cudaimgproc/src/ |
D | corners.cpp | 59 …block_size, float k, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int border_type, cudaStream_t s… 60 …_gpu(int block_size, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int border_type, cudaStream_t s…
|