Home
last modified time | relevance | path

Searched refs:borderMode (Results 1 – 25 of 37) sorted by relevance

12

/external/opencv3/modules/cudaimgproc/src/
Dbilateral_filter.cpp59 …pSzb dst, int kernel_size, float sigma_spatial, float sigma_color, int borderMode, cudaStream_t st…
63 …rray _dst, int kernel_size, float sigma_color, float sigma_spatial, int borderMode, Stream& stream) in bilateralFilter() argument
67 …pSzb dst, int kernel_size, float sigma_spatial, float sigma_color, int borderMode, cudaStream_t s); in bilateralFilter()
88 …rt( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONS… in bilateralFilter()
96 …func(src, dst, kernel_size, sigma_spatial, sigma_color, borderMode, StreamAccessor::getStream(stre… in bilateralFilter()
/external/opencv3/modules/cudawarping/src/cuda/
Dwarp.cu277 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20) in warp_caller() argument
306 …funcs[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(src… in warp_caller()
311 … int borderMode, const float* borderValue, cudaStream_t stream, bool cc20) in warpAffine_gpu() argument
315 …ler<AffineTransform, T>(src, srcWhole, xoff, yoff, dst, interpolation, borderMode, borderValue, st… in warpAffine_gpu()
318 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
320 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
321 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
328 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
330 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
331 … int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
[all …]
Dremap.cu207 …PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, … in remap_gpu() argument
237 …callers[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(s… in remap_gpu()
241 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
243 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
244 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
251 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
253 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
254 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
256 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
258 …rStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* bo…
[all …]
/external/opencv3/modules/cudawarping/src/
Dremap.cpp57 … int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
61 …Array _dst, InputArray _xmap, InputArray _ymap, int interpolation, int borderMode, Scalar borderVa… in remap() argument
66 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); in remap()
84 …rt( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONS… in remap()
101 …dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSup… in remap()
Dwarp.cpp68 … int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
74 … int borderMode, const float* borderValue, cudaStream_t stream, bool cc20);
183 …rray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderVa… in warpAffine() argument
194 …rt( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONS… in warpAffine()
243 …bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][… in warpAffine()
287 int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); in warpAffine()
318 …dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSup… in warpAffine()
322 …rray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderVa… in warpPerspective() argument
333 …rt( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONS… in warpPerspective()
382 …bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][… in warpPerspective()
[all …]
/external/opencv3/modules/imgproc/perf/
Dperf_warp.cpp32 int borderMode, interType; in PERF_TEST_P() local
35 borderMode = get<2>(GetParam()); in PERF_TEST_P()
40 if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); in PERF_TEST_P()
44 TEST_CYCLE() warpAffine( src, dst, warpMat, sz, interType, borderMode, borderColor ); in PERF_TEST_P()
62 int borderMode, interType; in PERF_TEST_P() local
65 borderMode = get<2>(GetParam()); in PERF_TEST_P()
70 if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); in PERF_TEST_P()
82 TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, borderColor ); in PERF_TEST_P()
101 int borderMode, interType, type; variable
104 borderMode = get<2>(GetParam());
[all …]
Dperf_filter2d.cpp25 int borderMode, kSize; variable
28 borderMode = get<2>(GetParam());
40 TEST_CYCLE() filter2D(src, dst, CV_8UC4, kernel, Point(1, 1), 0., borderMode);
/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 …RowSumFilter(int srcType, int dstType, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT…
313 …umnSumFilter(int srcType, int dstType, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT…
/external/opencv3/modules/cudaimgproc/perf/
Dperf_corners.cpp63 const int borderMode = GET_PARAM(2); variable
79 …riteria> harris = cv::cuda::createHarrisCorner(img.type(), blockSize, apertureSize, k, borderMode);
89 TEST_CYCLE() cv::cornerHarris(img, dst, blockSize, apertureSize, k, borderMode);
107 const int borderMode = GET_PARAM(2); variable
121 …> minEigenVal = cv::cuda::createMinEigenValCorner(img.type(), blockSize, apertureSize, borderMode);
131 TEST_CYCLE() cv::cornerMinEigenVal(img, dst, blockSize, apertureSize, borderMode);
Dperf_bilateral_filter.cpp69 const int borderMode = cv::BORDER_REFLECT101; variable
81 …CYCLE() cv::cuda::bilateralFilter(d_src, dst, kernel_size, sigma_color, sigma_spatial, borderMode);
89 … TEST_CYCLE() cv::bilateralFilter(src, dst, kernel_size, sigma_color, sigma_spatial, borderMode);
/external/opencv3/modules/cudafilters/src/
Dfiltering.cpp99 …NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal);
116 …NPPBoxFilter::NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Sca… in NPPBoxFilter() argument
117 … ksize_(ksize), anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) in NPPBoxFilter()
165 …reateBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVa… in createBoxFilter() argument
172 return makePtr<NPPBoxFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal); in createBoxFilter()
183 int borderMode, const float* borderValue, cudaStream_t stream);
191 …LinearFilter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar bor…
198 int borderMode, const float* borderValue, cudaStream_t stream);
208 …Filter(int srcType, int dstType, InputArray _kernel, Point anchor, int borderMode, Scalar borderVa… in LinearFilter() argument
209 anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) in LinearFilter()
[all …]
/external/opencv3/modules/cudafilters/src/cuda/
Dfilter2d.cu126 int borderMode, const float* borderValue, cudaStream_t stream) in filter2D() argument
139 funcs[borderMode]((PtrStepSz<T>) srcWhole, ofsX, ofsY, (PtrStepSz<D>) dst, kernel, in filter2D()
143 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
144 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
145 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
146 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
147 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
148 … float* kernel, int kWidth, int kHeight, int anchorX, int anchorY, int borderMode, const float* bo…
/external/opencv3/modules/cudawarping/perf/
Dperf_warping.cpp108 const int borderMode = GET_PARAM(4); in PERF_TEST_P() local
127 TEST_CYCLE() cv::cuda::remap(d_src, dst, d_xmap, d_ymap, interpolation, borderMode); in PERF_TEST_P()
135 TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode); in PERF_TEST_P()
246 const int borderMode = GET_PARAM(4); in PERF_TEST_P() local
266 TEST_CYCLE() cv::cuda::warpAffine(d_src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
274 TEST_CYCLE() cv::warpAffine(src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
296 const int borderMode = GET_PARAM(4); in PERF_TEST_P() local
314 TEST_CYCLE() cv::cuda::warpPerspective(d_src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
322 TEST_CYCLE() cv::warpPerspective(src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
/external/opencv3/modules/photo/src/
Ddenoising.cuda.cpp77 …src, PtrStepSzb dst, int search_radius, int block_radius, float h, int borderMode, cudaStream_t st…
81 …rc, OutputArray _dst, float h, int search_window, int block_window, int borderMode, Stream& stream) in nonLocalMeans() argument
84 …src, PtrStepSzb dst, int search_radius, int block_radius, float h, int borderMode, cudaStream_t st… in nonLocalMeans()
95 int b = borderMode; in nonLocalMeans()
101 … func(src, dst, search_window/2, block_window/2, h, borderMode, StreamAccessor::getStream(stream)); in nonLocalMeans()
/external/opencv3/modules/cudawarping/include/opencv2/
Dcudawarping.hpp87 … int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(),
127 … int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null());
159 … int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null());
/external/opencv3/modules/cudaarithm/src/cuda/
Dcopy_make_border.cu92 …void copyMakeBorderImpl(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Sca… in copyMakeBorderImpl() argument
105 switch (borderMode) in copyMakeBorderImpl()
128 …typedef void (*func_t)(const GpuMat& src, GpuMat& dst, int top, int left, int borderMode, cv::Scal… in copyMakeBorder()
/external/opencv3/modules/photo/perf/
Dperf_cuda.cpp79 const int borderMode = cv::BORDER_REFLECT101; variable
91 … TEST_CYCLE() cv::cuda::nonLocalMeans(d_src, dst, h, search_widow_size, block_size, borderMode);
/external/opencv3/modules/shape/src/
Daff_trans.cpp73 int flags, int borderMode, const Scalar& borderValue) const;
102 int flags, int borderMode, const Scalar& borderValue) const in warpImage() argument
105 …ormingImage, output, affineMat, transformingImage.getMat().size(), flags, borderMode, borderValue); in warpImage()
Dtps_trans.cpp75 int flags, int borderMode, const Scalar& borderValue) const;
146 int flags, int borderMode, const Scalar& borderValue) const in warpImage() argument
163 remap(transformingImage, output, mapX, mapY, flags, borderMode, borderValue); in warpImage()
/external/opencv3/modules/cudaarithm/perf/
Dperf_core.cpp297 const int borderMode = GET_PARAM(3); in PERF_TEST_P() local
309 TEST_CYCLE() cv::cuda::copyMakeBorder(d_src, dst, 5, 5, 5, 5, borderMode); in PERF_TEST_P()
317 TEST_CYCLE() cv::copyMakeBorder(src, dst, 5, 5, 5, 5, borderMode); in PERF_TEST_P()
/external/opencv3/modules/cudaoptflow/src/cuda/
Dfarneback.cu522 … const PtrStepSzf src, int ksizeHalf, PtrStepSzf dst, int borderMode, cudaStream_t stream) in gaussianBlurGpu() argument
535 callers[borderMode](src, ksizeHalf, dst, stream); in gaussianBlurGpu()
620 … const PtrStepSzf src, int ksizeHalf, PtrStepSzf dst, int borderMode, cudaStream_t stream) in gaussianBlur5Gpu() argument
633 callers[borderMode](src, ksizeHalf, dst, stream); in gaussianBlur5Gpu()
637 … const PtrStepSzf src, int ksizeHalf, PtrStepSzf dst, int borderMode, cudaStream_t stream) in gaussianBlur5Gpu_CC11() argument
650 callers[borderMode](src, ksizeHalf, dst, stream); in gaussianBlur5Gpu_CC11()
/external/opencv3/modules/cudawarping/test/
Dtest_warp_affine.cpp90 int borderMode = cv::BORDER_CONSTANT; in CUDA_TEST_P() local
96 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); in CUDA_TEST_P()
99 cv::warpAffine(src, dst_gold, M, size, flags, borderMode); in CUDA_TEST_P()
Dtest_warp_perspective.cpp91 int borderMode = cv::BORDER_CONSTANT; in CUDA_TEST_P() local
97 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); in CUDA_TEST_P()
100 cv::warpPerspective(src, dst_gold, M, size, flags, borderMode); in CUDA_TEST_P()
/external/opencv3/modules/photo/include/opencv2/photo/
Dcuda.hpp71 int borderMode = BORDER_DEFAULT,
/external/opencv3/modules/shape/include/opencv2/shape/
Dshape_transformer.hpp86 int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT,

12