borderMode 297 modules/cudaarithm/perf/perf_core.cpp const int borderMode = GET_PARAM(3); borderMode 309 modules/cudaarithm/perf/perf_core.cpp TEST_CYCLE() cv::cuda::copyMakeBorder(d_src, dst, 5, 5, 5, 5, borderMode); borderMode 317 modules/cudaarithm/perf/perf_core.cpp TEST_CYCLE() cv::copyMakeBorder(src, dst, 5, 5, 5, 5, borderMode); borderMode 103 modules/cudafilters/include/opencv2/cudafilters.hpp int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 121 modules/cudafilters/include/opencv2/cudafilters.hpp int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 140 modules/cudafilters/include/opencv2/cudafilters.hpp int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 276 modules/cudafilters/include/opencv2/cudafilters.hpp int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 288 modules/cudafilters/include/opencv2/cudafilters.hpp int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 302 modules/cudafilters/include/opencv2/cudafilters.hpp CV_EXPORTS Ptr<Filter> createRowSumFilter(int srcType, int dstType, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 313 modules/cudafilters/include/opencv2/cudafilters.hpp CV_EXPORTS Ptr<Filter> createColumnSumFilter(int srcType, int dstType, int ksize, int anchor = -1, int borderMode = BORDER_DEFAULT, Scalar borderVal = Scalar::all(0)); borderMode 99 modules/cudafilters/src/filtering.cpp NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal); borderMode 116 modules/cudafilters/src/filtering.cpp NPPBoxFilter::NPPBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal) : borderMode 117 modules/cudafilters/src/filtering.cpp ksize_(ksize), anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) borderMode 165 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createBoxFilter(int srcType, int dstType, Size ksize, Point anchor, int borderMode, Scalar borderVal) borderMode 172 modules/cudafilters/src/filtering.cpp return makePtr<NPPBoxFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal); borderMode 183 modules/cudafilters/src/filtering.cpp int borderMode, const float* borderValue, cudaStream_t stream); borderMode 191 modules/cudafilters/src/filtering.cpp LinearFilter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar borderVal); borderMode 198 modules/cudafilters/src/filtering.cpp int borderMode, const float* borderValue, cudaStream_t stream); borderMode 208 modules/cudafilters/src/filtering.cpp LinearFilter::LinearFilter(int srcType, int dstType, InputArray _kernel, Point anchor, int borderMode, Scalar borderVal) : borderMode 209 modules/cudafilters/src/filtering.cpp anchor_(anchor), type_(srcType), borderMode_(borderMode), borderVal_(borderVal) borderMode 220 modules/cudafilters/src/filtering.cpp CV_Assert( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode == BORDER_REFLECT || borderMode == BORDER_WRAP ); borderMode 273 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createLinearFilter(int srcType, int dstType, InputArray kernel, Point anchor, int borderMode, Scalar borderVal) borderMode 280 modules/cudafilters/src/filtering.cpp return makePtr<LinearFilter>(srcType, dstType, kernel, anchor, borderMode, borderVal); borderMode 286 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createLaplacianFilter(int srcType, int dstType, int ksize, double scale, int borderMode, Scalar borderVal) borderMode 300 modules/cudafilters/src/filtering.cpp return cuda::createLinearFilter(srcType, dstType, kernel, Point(-1,-1), borderMode, borderVal); borderMode 794 modules/cudafilters/src/filtering.cpp NPPRankFilter(int op, int srcType, Size ksize, Point anchor, int borderMode, Scalar borderVal); borderMode 812 modules/cudafilters/src/filtering.cpp NPPRankFilter::NPPRankFilter(int op, int srcType, Size ksize, Point anchor, int borderMode, Scalar borderVal) : borderMode 813 modules/cudafilters/src/filtering.cpp type_(srcType), ksize_(ksize), anchor_(anchor), borderMode_(borderMode), borderVal_(borderVal) borderMode 863 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createBoxMaxFilter(int srcType, Size ksize, Point anchor, int borderMode, Scalar borderVal) borderMode 865 modules/cudafilters/src/filtering.cpp return makePtr<NPPRankFilter>(RANK_MAX, srcType, ksize, anchor, borderMode, borderVal); borderMode 868 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createBoxMinFilter(int srcType, Size ksize, Point anchor, int borderMode, Scalar borderVal) borderMode 870 modules/cudafilters/src/filtering.cpp return makePtr<NPPRankFilter>(RANK_MIN, srcType, ksize, anchor, borderMode, borderVal); borderMode 881 modules/cudafilters/src/filtering.cpp NppRowSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal); borderMode 895 modules/cudafilters/src/filtering.cpp NppRowSumFilter::NppRowSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal) : borderMode 896 modules/cudafilters/src/filtering.cpp srcType_(srcType), dstType_(dstType), ksize_(ksize), anchor_(anchor), borderMode_(borderMode), borderVal_(borderVal) borderMode 932 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createRowSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal) borderMode 934 modules/cudafilters/src/filtering.cpp return makePtr<NppRowSumFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal); borderMode 942 modules/cudafilters/src/filtering.cpp NppColumnSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal); borderMode 956 modules/cudafilters/src/filtering.cpp NppColumnSumFilter::NppColumnSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal) : borderMode 957 modules/cudafilters/src/filtering.cpp srcType_(srcType), dstType_(dstType), ksize_(ksize), anchor_(anchor), borderMode_(borderMode), borderVal_(borderVal) borderMode 993 modules/cudafilters/src/filtering.cpp Ptr<Filter> cv::cuda::createColumnSumFilter(int srcType, int dstType, int ksize, int anchor, int borderMode, Scalar borderVal) borderMode 995 modules/cudafilters/src/filtering.cpp return makePtr<NppColumnSumFilter>(srcType, dstType, ksize, anchor, borderMode, borderVal); borderMode 706 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp int borderMode = BORDER_DEFAULT, Stream& stream = Stream::Null()); borderMode 69 modules/cudaimgproc/perf/perf_bilateral_filter.cpp const int borderMode = cv::BORDER_REFLECT101; borderMode 81 modules/cudaimgproc/perf/perf_bilateral_filter.cpp TEST_CYCLE() cv::cuda::bilateralFilter(d_src, dst, kernel_size, sigma_color, sigma_spatial, borderMode); borderMode 89 modules/cudaimgproc/perf/perf_bilateral_filter.cpp TEST_CYCLE() cv::bilateralFilter(src, dst, kernel_size, sigma_color, sigma_spatial, borderMode); borderMode 63 modules/cudaimgproc/perf/perf_corners.cpp const int borderMode = GET_PARAM(2); borderMode 79 modules/cudaimgproc/perf/perf_corners.cpp cv::Ptr<cv::cuda::CornernessCriteria> harris = cv::cuda::createHarrisCorner(img.type(), blockSize, apertureSize, k, borderMode); borderMode 89 modules/cudaimgproc/perf/perf_corners.cpp TEST_CYCLE() cv::cornerHarris(img, dst, blockSize, apertureSize, k, borderMode); borderMode 107 modules/cudaimgproc/perf/perf_corners.cpp const int borderMode = GET_PARAM(2); borderMode 121 modules/cudaimgproc/perf/perf_corners.cpp cv::Ptr<cv::cuda::CornernessCriteria> minEigenVal = cv::cuda::createMinEigenValCorner(img.type(), blockSize, apertureSize, borderMode); borderMode 131 modules/cudaimgproc/perf/perf_corners.cpp TEST_CYCLE() cv::cornerMinEigenVal(img, dst, blockSize, apertureSize, borderMode); borderMode 59 modules/cudaimgproc/src/bilateral_filter.cpp void bilateral_filter_gpu(const PtrStepSzb& src, PtrStepSzb dst, int kernel_size, float sigma_spatial, float sigma_color, int borderMode, cudaStream_t stream); borderMode 63 modules/cudaimgproc/src/bilateral_filter.cpp void cv::cuda::bilateralFilter(InputArray _src, OutputArray _dst, int kernel_size, float sigma_color, float sigma_spatial, int borderMode, Stream& stream) borderMode 67 modules/cudaimgproc/src/bilateral_filter.cpp typedef void (*func_t)(const PtrStepSzb& src, PtrStepSzb dst, int kernel_size, float sigma_spatial, float sigma_color, int borderMode, cudaStream_t s); borderMode 88 modules/cudaimgproc/src/bilateral_filter.cpp CV_Assert( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode == BORDER_REFLECT || borderMode == BORDER_WRAP ); borderMode 96 modules/cudaimgproc/src/bilateral_filter.cpp func(src, dst, kernel_size, sigma_spatial, sigma_color, borderMode, StreamAccessor::getStream(stream)); borderMode 87 modules/cudawarping/include/opencv2/cudawarping.hpp int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), borderMode 127 modules/cudawarping/include/opencv2/cudawarping.hpp int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null()); borderMode 159 modules/cudawarping/include/opencv2/cudawarping.hpp int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), Stream& stream = Stream::Null()); borderMode 108 modules/cudawarping/perf/perf_warping.cpp const int borderMode = GET_PARAM(4); borderMode 127 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::cuda::remap(d_src, dst, d_xmap, d_ymap, interpolation, borderMode); borderMode 135 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode); borderMode 246 modules/cudawarping/perf/perf_warping.cpp const int borderMode = GET_PARAM(4); borderMode 266 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::cuda::warpAffine(d_src, dst, M, size, interpolation, borderMode); borderMode 274 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::warpAffine(src, dst, M, size, interpolation, borderMode); borderMode 296 modules/cudawarping/perf/perf_warping.cpp const int borderMode = GET_PARAM(4); borderMode 314 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::cuda::warpPerspective(d_src, dst, M, size, interpolation, borderMode); borderMode 322 modules/cudawarping/perf/perf_warping.cpp TEST_CYCLE() cv::warpPerspective(src, dst, M, size, interpolation, borderMode); borderMode 57 modules/cudawarping/src/remap.cpp int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 61 modules/cudawarping/src/remap.cpp void cv::cuda::remap(InputArray _src, OutputArray _dst, InputArray _xmap, InputArray _ymap, int interpolation, int borderMode, Scalar borderValue, Stream& stream) borderMode 66 modules/cudawarping/src/remap.cpp int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 84 modules/cudawarping/src/remap.cpp CV_Assert( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode == BORDER_REFLECT || borderMode == BORDER_WRAP ); borderMode 101 modules/cudawarping/src/remap.cpp dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSupports(FEATURE_SET_COMPUTE_20)); borderMode 68 modules/cudawarping/src/warp.cpp int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 74 modules/cudawarping/src/warp.cpp int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 183 modules/cudawarping/src/warp.cpp void cv::cuda::warpAffine(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderValue, Stream& stream) borderMode 194 modules/cudawarping/src/warp.cpp CV_Assert( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode == BORDER_REFLECT || borderMode == BORDER_WRAP ); borderMode 243 modules/cudawarping/src/warp.cpp bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation]; borderMode 287 modules/cudawarping/src/warp.cpp int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 318 modules/cudawarping/src/warp.cpp dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSupports(FEATURE_SET_COMPUTE_20)); borderMode 322 modules/cudawarping/src/warp.cpp void cv::cuda::warpPerspective(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderValue, Stream& stream) borderMode 333 modules/cudawarping/src/warp.cpp CV_Assert( borderMode == BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode == BORDER_REFLECT || borderMode == BORDER_WRAP) ; borderMode 382 modules/cudawarping/src/warp.cpp bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation]; borderMode 426 modules/cudawarping/src/warp.cpp int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); borderMode 457 modules/cudawarping/src/warp.cpp dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSupports(FEATURE_SET_COMPUTE_20)); borderMode 90 modules/cudawarping/test/test_warp_affine.cpp int borderMode = cv::BORDER_CONSTANT; borderMode 96 modules/cudawarping/test/test_warp_affine.cpp cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); borderMode 99 modules/cudawarping/test/test_warp_affine.cpp cv::warpAffine(src, dst_gold, M, size, flags, borderMode); borderMode 91 modules/cudawarping/test/test_warp_perspective.cpp int borderMode = cv::BORDER_CONSTANT; borderMode 97 modules/cudawarping/test/test_warp_perspective.cpp cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); borderMode 100 modules/cudawarping/test/test_warp_perspective.cpp cv::warpPerspective(src, dst_gold, M, size, flags, borderMode); borderMode 1994 modules/imgproc/include/opencv2/imgproc.hpp int borderMode = BORDER_CONSTANT, borderMode 2022 modules/imgproc/include/opencv2/imgproc.hpp int borderMode = BORDER_CONSTANT, borderMode 2057 modules/imgproc/include/opencv2/imgproc.hpp int interpolation, int borderMode = BORDER_CONSTANT, borderMode 182 modules/imgproc/perf/opencl/perf_imgwarp.cpp const int type = get<1>(params), interpolation = get<2>(params), borderMode = BORDER_CONSTANT; borderMode 206 modules/imgproc/perf/opencl/perf_imgwarp.cpp OCL_TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode); borderMode 25 modules/imgproc/perf/perf_filter2d.cpp int borderMode, kSize; borderMode 28 modules/imgproc/perf/perf_filter2d.cpp borderMode = get<2>(GetParam()); borderMode 40 modules/imgproc/perf/perf_filter2d.cpp TEST_CYCLE() filter2D(src, dst, CV_8UC4, kernel, Point(1, 1), 0., borderMode); borderMode 32 modules/imgproc/perf/perf_warp.cpp int borderMode, interType; borderMode 35 modules/imgproc/perf/perf_warp.cpp borderMode = get<2>(GetParam()); borderMode 40 modules/imgproc/perf/perf_warp.cpp if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); borderMode 44 modules/imgproc/perf/perf_warp.cpp TEST_CYCLE() warpAffine( src, dst, warpMat, sz, interType, borderMode, borderColor ); borderMode 62 modules/imgproc/perf/perf_warp.cpp int borderMode, interType; borderMode 65 modules/imgproc/perf/perf_warp.cpp borderMode = get<2>(GetParam()); borderMode 70 modules/imgproc/perf/perf_warp.cpp if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); borderMode 82 modules/imgproc/perf/perf_warp.cpp TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, borderColor ); borderMode 101 modules/imgproc/perf/perf_warp.cpp int borderMode, interType, type; borderMode 104 modules/imgproc/perf/perf_warp.cpp borderMode = get<2>(GetParam()); borderMode 110 modules/imgproc/perf/perf_warp.cpp if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); borderMode 127 modules/imgproc/perf/perf_warp.cpp warpPerspective( src, dst, warpMat, size, interType, borderMode, borderColor ); borderMode 150 modules/imgproc/perf/perf_warp.cpp int borderMode = get<3>(GetParam()); borderMode 165 modules/imgproc/perf/perf_warp.cpp remap(source, destination, map_x, map_y, interpolationType, borderMode); borderMode 71 modules/photo/include/opencv2/photo/cuda.hpp int borderMode = BORDER_DEFAULT, borderMode 79 modules/photo/perf/perf_cuda.cpp const int borderMode = cv::BORDER_REFLECT101; borderMode 91 modules/photo/perf/perf_cuda.cpp TEST_CYCLE() cv::cuda::nonLocalMeans(d_src, dst, h, search_widow_size, block_size, borderMode); borderMode 77 modules/photo/src/denoising.cuda.cpp void nlm_bruteforce_gpu(const PtrStepSzb& src, PtrStepSzb dst, int search_radius, int block_radius, float h, int borderMode, cudaStream_t stream); borderMode 81 modules/photo/src/denoising.cuda.cpp void cv::cuda::nonLocalMeans(InputArray _src, OutputArray _dst, float h, int search_window, int block_window, int borderMode, Stream& stream) borderMode 84 modules/photo/src/denoising.cuda.cpp typedef void (*func_t)(const PtrStepSzb& src, PtrStepSzb dst, int search_radius, int block_radius, float h, int borderMode, cudaStream_t stream); borderMode 95 modules/photo/src/denoising.cuda.cpp int b = borderMode; borderMode 101 modules/photo/src/denoising.cuda.cpp func(src, dst, search_window/2, block_window/2, h, borderMode, StreamAccessor::getStream(stream)); borderMode 86 modules/shape/include/opencv2/shape/shape_transformer.hpp int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, borderMode 73 modules/shape/src/aff_trans.cpp int flags, int borderMode, const Scalar& borderValue) const; borderMode 102 modules/shape/src/aff_trans.cpp int flags, int borderMode, const Scalar& borderValue) const borderMode 105 modules/shape/src/aff_trans.cpp warpAffine(transformingImage, output, affineMat, transformingImage.getMat().size(), flags, borderMode, borderValue); borderMode 75 modules/shape/src/tps_trans.cpp int flags, int borderMode, const Scalar& borderValue) const; borderMode 146 modules/shape/src/tps_trans.cpp int flags, int borderMode, const Scalar& borderValue) const borderMode 163 modules/shape/src/tps_trans.cpp remap(transformingImage, output, mapX, mapY, flags, borderMode, borderValue); borderMode 95 samples/gpu/performance/tests.cpp int borderMode = BORDER_REPLICATE; borderMode 116 samples/gpu/performance/tests.cpp remap(src, dst, xmap, ymap, interpolation, borderMode); borderMode 119 samples/gpu/performance/tests.cpp remap(src, dst, xmap, ymap, interpolation, borderMode); borderMode 126 samples/gpu/performance/tests.cpp cuda::remap(d_src, d_dst, d_xmap, d_ymap, interpolation, borderMode); borderMode 129 samples/gpu/performance/tests.cpp cuda::remap(d_src, d_dst, d_xmap, d_ymap, interpolation, borderMode);