/external/opencv3/modules/imgproc/ |
D | opencl_kernels_imgproc.cpp | 217 const struct ProgramEntry boxFilter={"boxFilter", variable 386 ProgramSource boxFilter_oclsrc(boxFilter.programStr);
|
D | opencl_kernels_imgproc.hpp | 20 extern const struct ProgramEntry boxFilter;
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_boxfilter.cpp | 109 OCL_OFF(cv::boxFilter(src_roi, dst_roi, -1, ksize, anchor, normalize, borderType)); in OCL_TEST_P() 110 OCL_ON(cv::boxFilter(usrc_roi, udst_roi, -1, ksize, anchor, normalize, borderType)); in OCL_TEST_P()
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_blur.cpp | 134 TEST_CYCLE() boxFilter(src, dst, -1, Size(3,3), Point(-1,-1), false, btype); in PERF_TEST_P() 160 boxFilter(dst, dst, -1, Size(3,3), Point(-1,-1), false, btype); in PERF_TEST_P()
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_filtering/ |
D | py_filtering.markdown | 58 **cv2.blur()** or **cv2.boxFilter()**. Check the docs for more details about the kernel. We should 63 @note If you don't want to use normalized box filter, use **cv2.boxFilter()**. Pass an argument
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | boxFilter.cl | 166 __kernel void boxFilter(__global const uchar * srcptr, int src_step, int srcOffsetX, int srcOffsetY…
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 219 Imgproc.boxFilter(gray0, dst, 8, size); in testBoxFilterMatMatIntSize() 225 Imgproc.boxFilter(gray255, dst, 8, size, anchorPoint, false); in testBoxFilterMatMatIntSizePointBoolean() 231 Imgproc.boxFilter(gray255, dst, 8, size, anchorPoint, false, Core.BORDER_REFLECT); in testBoxFilterMatMatIntSizePointBooleanInt()
|
/external/opencv3/modules/calib3d/test/ |
D | test_stereomatching.cpp | 87 Mat avgDxI2; boxFilter( dxI2, avgDxI2, CV_32FC1, Size(texturelessWidth,texturelessWidth) ); in computeTextureBasedMasks()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 1005 …public static void boxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean norma… in boxFilter() method in Imgproc 1014 …public static void boxFilter(Mat src, Mat dst, int ddepth, Size ksize, Point anchor, boolean norma… in boxFilter() method in Imgproc 1023 public static void boxFilter(Mat src, Mat dst, int ddepth, Size ksize) in boxFilter() method in Imgproc
|
D | imgproc.cpp | 1994 cv::boxFilter( src, dst, (int)ddepth, ksize, anchor, (bool)normalize, (int)borderType ); in Java_org_opencv_imgproc_Imgproc_boxFilter_10() 2018 cv::boxFilter( src, dst, (int)ddepth, ksize, anchor, (bool)normalize ); in Java_org_opencv_imgproc_Imgproc_boxFilter_11() 2041 cv::boxFilter( src, dst, (int)ddepth, ksize ); in Java_org_opencv_imgproc_Imgproc_boxFilter_12()
|
/external/opencv3/modules/imgproc/src/ |
D | corner.cpp | 365 boxFilter(cov, cov, cov.depth(), Size(block_size, block_size), in cornerEigenValsVecs()
|
D | smooth.cpp | 1307 void cv::boxFilter( InputArray _src, OutputArray _dst, int ddepth, in boxFilter() function in cv 1412 boxFilter( src, dst, -1, ksize, anchor, true, borderType ); in blur() 3444 cv::boxFilter( src, dst, dst.depth(), cv::Size(param1, param2), cv::Point(-1,-1), in cvSmooth()
|
D | thresh.cpp | 1299 boxFilter( src, mean, src.type(), Size(blockSize, blockSize), in adaptiveThreshold()
|
/external/opencv3/modules/imgproc/include/opencv2/ |
D | imgproc.hpp | 1219 CV_EXPORTS_W void boxFilter( InputArray src, OutputArray dst, int ddepth,
|