/external/opencv3/modules/cudawarping/src/cuda/ |
warp.cu | 143 static void call(PtrStepSz<T> src, PtrStepSz<T> dst, const float* borderValue, cudaStream_t stream, bool) 150 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); 161 static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSz<T> dst, const float* borderValue, bool) 172 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); 198 static void call(PtrStepSz< type > src, PtrStepSz< type > srcWhole, int xoff, int yoff, PtrStepSz< type > dst, const float* borderValue, bool cc20) \ 205 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); \ 266 static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSz<T> dst, const float* borderValue, cudaStream_t stream, bool cc20) 269 WarpDispatcherNonStream<Transform, Filter, B, T>::call(src, srcWhole, xoff, yoff, dst, borderValue, cc20); 271 WarpDispatcherStream<Transform, Filter, B, T>::call(src, dst, borderValue, stream, cc20); 277 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20 [all...] |
remap.cu | 72 static void call(PtrStepSz<T> src, PtrStepSzf mapx, PtrStepSzf mapy, PtrStepSz<T> dst, const float* borderValue, cudaStream_t stream, bool) 79 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); 90 static void call(PtrStepSz<T> src, PtrStepSz<T> srcWhole, int xoff, int yoff, PtrStepSzf mapx, PtrStepSzf mapy, PtrStepSz<T> dst, const float* borderValue, bool) 100 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); 127 PtrStepSz< type > dst, const float* borderValue, bool cc20) \ 134 B<work_type> brd(src.rows, src.cols, VecTraits<work_type>::make(borderValue)); \ 197 PtrStepSz<T> dst, const float* borderValue, cudaStream_t stream, bool cc20) 200 RemapDispatcherNonStream<Filter, B, T>::call(src, srcWhole, xoff, yoff, mapx, mapy, dst, borderValue, cc20); 202 RemapDispatcherStream<Filter, B, T>::call(src, mapx, mapy, dst, borderValue, stream, cc20); 207 PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20 [all...] |
/external/opencv3/modules/cudafilters/src/cuda/ |
filter2d.cu | 96 int kWidth, int kHeight, int anchorX, int anchorY, const float* borderValue, cudaStream_t stream) \ 103 Brd<work_type> brd(dst.rows, dst.cols, VecTraits<work_type>::make(borderValue)); \ 126 int borderMode, const float* borderValue, cudaStream_t stream) 129 int kWidth, int kHeight, int anchorX, int anchorY, const float* borderValue, cudaStream_t stream); 140 kWidth, kHeight, anchorX, anchorY, borderValue, stream); 143 template void filter2D<uchar , uchar >(PtrStepSzb srcWhole, int ofsX, int ofsY, PtrStepSzb dst, const float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* borderValue, cudaStream_t stream); 144 template void filter2D<uchar4 , uchar4 >(PtrStepSzb srcWhole, int ofsX, int ofsY, PtrStepSzb dst, const float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* borderValue, cudaStream_t stream); 145 template void filter2D<ushort , ushort >(PtrStepSzb srcWhole, int ofsX, int ofsY, PtrStepSzb dst, const float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* borderValue, cudaStream_t stream); 146 template void filter2D<ushort4, ushort4>(PtrStepSzb srcWhole, int ofsX, int ofsY, PtrStepSzb dst, const float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* borderValue, cudaStream_t stream); 147 template void filter2D<float , float >(PtrStepSzb srcWhole, int ofsX, int ofsY, PtrStepSzb dst, const float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* borderValue, cudaStream_t stream) [all...] |
/external/opencv3/modules/imgproc/src/ |
morph.cpp | [all...] |
filterengine.hpp | 308 const Scalar& borderValue = Scalar()); 314 int columnBorderType = -1, const Scalar& borderValue = Scalar()); 355 const Scalar& borderValue = morphologyDefaultBorderValue());
|
imgwarp.cpp | [all...] |
filter.cpp | [all...] |
smooth.cpp | [all...] |
/external/opencv3/modules/cudawarping/src/ |
remap.cpp | 57 int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 61 void cv::cuda::remap(InputArray _src, OutputArray _dst, InputArray _xmap, InputArray _ymap, int interpolation, int borderMode, Scalar borderValue, Stream& stream) 66 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 94 borderValueFloat = borderValue;
|
warp.cpp | 68 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 74 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 183 void cv::cuda::warpAffine(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderValue, Stream& stream) 271 dst.setTo(borderValue, stream); 287 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 315 borderValueFloat = borderValue; 322 void cv::cuda::warpPerspective(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderValue, Stream& stream) 410 dst.setTo(borderValue, stream); 426 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 454 borderValueFloat = borderValue; [all...] |
/external/opencv3/modules/cudawarping/include/opencv2/ |
cudawarping.hpp | 75 @param borderValue Value used in case of a constant border. By default, it is 0. 87 int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), 121 @param borderValue 127 int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null()); 153 @param borderValue 159 int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null());
|
/external/opencv3/modules/cudaarithm/src/cuda/ |
copy_make_border.cu | 92 void copyMakeBorderImpl(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Scalar borderValue, Stream& stream) 96 cv::Scalar_<T> borderValue_ = borderValue; 128 typedef void (*func_t)(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Scalar borderValue, Stream& stream);
|
/external/opencv3/modules/java/src/ |
imgproc+Imgproc.java | 425 // C++: void remap(Mat src, Mat& dst, Mat map1, Mat map2, int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar()) 428 //javadoc: remap(src, dst, map1, map2, interpolation, borderMode, borderValue) 429 public static void remap(Mat src, Mat dst, Mat map1, Mat map2, int interpolation, int borderMode, Scalar borderValue) 432 remap_0(src.nativeObj, dst.nativeObj, map1.nativeObj, map2.nativeObj, interpolation, borderMode, borderValue.val[0], borderValue.val[1], borderValue.val[2], borderValue.val[3]); [all...] |
imgproc.cpp | 752 // void remap(Mat src, Mat& dst, Mat map1, Mat map2, int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar()) 767 Scalar borderValue(borderValue_val0, borderValue_val1, borderValue_val2, borderValue_val3); 768 cv::remap( src, dst, map1, map2, (int)interpolation, (int)borderMode, borderValue ); [all...] |
/external/opencv3/modules/imgproc/test/ |
test_imgwarp_strict.cpp | 640 Scalar borderValue; 655 borderType(-1), borderValue() 671 borderValue = Scalar::all(rng.uniform(0, 255)); 761 remap(src, dst, mapx, mapy, interpolation, borderType, borderValue); 857 xyD[r] = saturate_cast<float>(borderValue[r]); 951 ix[i] += saturate_cast<float>((ar_x[j] >= 0 ? yS[ar_x[j] + r] : borderValue[r]) * w[j]); 955 ix[i] += saturate_cast<float>(borderValue[r] * w[j]); 971 PRINT_TO_LOG("BorderValue: (%f, %f, %f, %f)\n", 972 borderValue[0], borderValue[1], borderValue[2], borderValue[3]) [all...] |
/external/opencv3/modules/shape/include/opencv2/shape/ |
shape_transformer.hpp | 83 @param borderValue border value. 87 const Scalar& borderValue=Scalar()) const = 0;
|
/external/opencv3/modules/shape/src/ |
aff_trans.cpp | 73 int flags, int borderMode, const Scalar& borderValue) const; 102 int flags, int borderMode, const Scalar& borderValue) const 105 warpAffine(transformingImage, output, affineMat, transformingImage.getMat().size(), flags, borderMode, borderValue);
|
tps_trans.cpp | 75 int flags, int borderMode, const Scalar& borderValue) const; 146 int flags, int borderMode, const Scalar& borderValue) const 163 remap(transformingImage, output, mapX, mapY, flags, borderMode, borderValue);
|
/external/opencv3/modules/ts/include/opencv2/ |
ts.hpp | 116 int borderType=0, const Scalar& borderValue=Scalar()); 118 int borderType=0, const Scalar& borderValue=Scalar()); 121 const Scalar& borderValue=Scalar()); 123 int borderType, const Scalar& borderValue=Scalar());
|
/external/opencv/cv/src/ |
cvderiv.cpp | 158 CvSize size, int bordertype, uchar bordervalue, void* buffer ); 162 CvSize size, int bordertype, float bordervalue, void* buffer ); 167 uchar bordervalue, void* buffer ); 172 float bordervalue, void* buffer ); [all...] |
_cvipp.h | 389 int bordertype, srctype bordervalue, void* buffer )) 412 int bordertype, srctype bordervalue, void* buffer )) 430 int bordertype, srctype bordervalue, void* buffer )) [all...] |
/external/opencv3/modules/ts/src/ |
ts_func.cpp | 643 Scalar borderValue = _borderValue; 653 borderValue = getMaxVal(src.depth()); 656 borderType, borderValue); 700 Scalar borderValue = _borderValue; 710 borderValue = getMinVal(src.depth()); 713 borderType, borderValue); 781 Scalar borderValue = _borderValue; 786 borderValue = getMinVal(src.depth()); 789 borderType, borderValue); 869 int borderType, const Scalar& borderValue) [all...] |
/external/opencv3/modules/cudafilters/src/ |
filtering.cpp | 183 int borderMode, const float* borderValue, cudaStream_t stream); 198 int borderMode, const float* borderValue, cudaStream_t stream); [all...] |
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | [all...] |