Home
last modified time | relevance | path

Searched refs:BORDER_CONSTANT (Results 1 – 25 of 80) sorted by relevance

1234

/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/doc/tutorials/imgproc/imgtrans/copyMakeBorder/
DcopyMakeBorder.markdown27 -# **BORDER_CONSTANT**: Pad the image with a constant value (i.e. black or \f$0\f$
87 takes the value of *BORDER_CONSTANT* or *BORDER_REPLICATE* respectively:
96 { borderType = BORDER_CONSTANT; }
119 -# *value*: If *borderType* is *BORDER_CONSTANT*, this is the value used to fill the border
133 - By default, it begins with the border set to BORDER_CONSTANT. Hence, a succession of random
/external/opencv3/modules/core/src/opencl/
Dcopymakeborder.cl57 #ifdef BORDER_CONSTANT
105 #ifdef BORDER_CONSTANT
116 #ifdef BORDER_CONSTANT
131 #ifdef BORDER_CONSTANT
/external/opencv3/modules/imgproc/perf/
Dperf_warp.cpp12 CV_ENUM(BorderMode, BORDER_CONSTANT, BORDER_REPLICATE)
40 if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); in PERF_TEST_P()
70 if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1); in PERF_TEST_P()
110 if(borderMode == BORDER_CONSTANT) cvtest::smoothBorder(src, borderColor, 1);
Dperf_sepfilters.cpp11 CV_ENUM(BorderType3x3, BORDER_REPLICATE, BORDER_CONSTANT)
12 CV_ENUM(BorderType3x3ROI, BORDER_DEFAULT, BORDER_REPLICATE|BORDER_ISOLATED, BORDER_CONSTANT|BORDER_…
14 CV_ENUM(BorderType, BORDER_REPLICATE, BORDER_CONSTANT, BORDER_REFLECT, BORDER_REFLECT101)
15 CV_ENUM(BorderTypeROI, BORDER_DEFAULT, BORDER_REPLICATE|BORDER_ISOLATED, BORDER_CONSTANT|BORDER_ISO…
Dperf_blur.cpp37 CV_ENUM(BorderType3x3, BORDER_REPLICATE, BORDER_CONSTANT)
38 CV_ENUM(BorderType, BORDER_REPLICATE, BORDER_CONSTANT, BORDER_REFLECT, BORDER_REFLECT101)
Dperf_filter2d.cpp11 CV_ENUM(BorderMode, BORDER_CONSTANT, BORDER_REPLICATE, BORDER_REFLECT_101)
/external/opencv3/modules/imgproc/test/ocl/
Dtest_filters.cpp356 …Values((BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE, (BorderType)BORDER_REFLECT, (Bor…
362 …Values((BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE, (BorderType)BORDER_REFLECT, /*(i…
418 Values((BorderType)BORDER_CONSTANT),
427 Values((BorderType)BORDER_CONSTANT),
Dtest_boxfilter.cpp137 Values((BorderType)BORDER_CONSTANT,
150 Values((BorderType)BORDER_CONSTANT,
Dtest_imgproc.cpp448 Values((BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE,
455 Values( (BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE,
462 Values( (BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE,
491 … Values((BorderType)BORDER_CONSTANT, (BorderType)BORDER_REPLICATE, (BorderType)BORDER_REFLECT,
/external/opencv3/modules/imgproc/src/opencl/
DfilterSepRow.cl74 #ifdef BORDER_CONSTANT
114 #ifdef BORDER_CONSTANT
124 #endif //BORDER_CONSTANT
171 #ifdef BORDER_CONSTANT
202 #else // BORDER_CONSTANT
253 #endif //BORDER_CONSTANT
311 #ifdef BORDER_CONSTANT
358 #endif // BORDER_CONSTANT
Dfilter2D.cl43 #ifdef BORDER_CONSTANT
95 #ifdef BORDER_CONSTANT
193 #ifdef BORDER_CONSTANT
/external/opencv3/modules/cudaarithm/src/cuda/
Dcopy_make_border.cu107 case cv::BORDER_CONSTANT: in copyMakeBorderImpl()
145 …ORDER_REFLECT_101 || borderType == BORDER_REPLICATE || borderType == BORDER_CONSTANT || borderType… in copyMakeBorder()
/external/opencv3/modules/video/perf/
Dperf_optflowpyrlk.cpp202 derivBorder = BORDER_CONSTANT;
210 …alFlowPyramid(img, pyramid, winSize, 1000, withDerivatives, BORDER_CONSTANT, BORDER_CONSTANT, tryR…
/external/opencv3/modules/cudafilters/test/
Dtest_filters.cpp118 …BORDER_REFLECT101), BorderType(cv::BORDER_REPLICATE), BorderType(cv::BORDER_CONSTANT), BorderType(…
170 …BORDER_REFLECT101), BorderType(cv::BORDER_REPLICATE), BorderType(cv::BORDER_CONSTANT), BorderType(…
283 BorderType(cv::BORDER_CONSTANT),
350 BorderType(cv::BORDER_CONSTANT),
414 BorderType(cv::BORDER_CONSTANT),
488 BorderType(cv::BORDER_CONSTANT),
/external/opencv3/modules/shape/include/opencv2/shape/
Dshape_transformer.hpp86 int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT,
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DcopyMakeBorder_demo.cpp63 { borderType = BORDER_CONSTANT; } in main()
DRemap_Demo.cpp51 remap( src, dst, map_x, map_y, INTER_LINEAR, BORDER_CONSTANT, Scalar(0, 0, 0) ); in main()
/external/opencv3/modules/stitching/src/
Dstitcher.cpp182 …corners[i] = w->warp(seam_est_imgs_[i], K, cameras_[i].R, INTER_LINEAR, BORDER_CONSTANT, images_wa… in composePanorama()
185 w->warp(masks[i], K, cameras_[i].R, INTER_NEAREST, BORDER_CONSTANT, masks_warped[i]); in composePanorama()
288 w->warp(img, K, cameras_[img_idx].R, INTER_LINEAR, BORDER_CONSTANT, img_warped); in composePanorama()
297 w->warp(mask, K, cameras_[img_idx].R, INTER_NEAREST, BORDER_CONSTANT, mask_warped); in composePanorama()
/external/opencv3/modules/cudawarping/src/
Dwarp.cpp194 …BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode… in warpAffine()
243 …bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][… in warpAffine()
333 …BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode… in warpPerspective()
382 …bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][… in warpPerspective()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp1868 int borderType = BORDER_CONSTANT,
1894 int borderType = BORDER_CONSTANT,
1921 int borderType = BORDER_CONSTANT,
1994 int borderMode = BORDER_CONSTANT,
2022 int borderMode = BORDER_CONSTANT,
2057 int interpolation, int borderMode = BORDER_CONSTANT,
/external/opencv3/doc/py_tutorials/py_core/py_basic_ops/
Dpy_basic_ops.markdown155 - **cv2.BORDER_CONSTANT** - Adds a constant colored border. The value should be given
166 - **value** - Color of border if border type is cv2.BORDER_CONSTANT
182 constant= cv2.copyMakeBorder(img1,10,10,10,10,cv2.BORDER_CONSTANT,value=BLUE)
/external/opencv3/modules/cudaimgproc/src/
Dbilateral_filter.cpp88 …BORDER_REFLECT101 || borderMode == BORDER_REPLICATE || borderMode == BORDER_CONSTANT || borderMode… in bilateralFilter()
/external/opencv3/samples/cpp/
Ddft.cpp41 copyMakeBorder(img, padded, 0, M - img.rows, 0, N - img.cols, BORDER_CONSTANT, Scalar::all(0)); in main()
/external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
Ddiscrete_fourier_transform.cpp33 copyMakeBorder(I, padded, 0, m - I.rows, 0, n - I.cols, BORDER_CONSTANT, Scalar::all(0)); in main()

1234