Home
last modified time | relevance | path

Searched refs:boxFilter (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/modules/imgproc/
Dopencl_kernels_imgproc.cpp217 const struct ProgramEntry boxFilter={"boxFilter", variable
386 ProgramSource boxFilter_oclsrc(boxFilter.programStr);
Dopencl_kernels_imgproc.hpp20 extern const struct ProgramEntry boxFilter;
/external/opencv3/modules/imgproc/test/ocl/
Dtest_boxfilter.cpp109 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/
Dperf_blur.cpp134 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/
Dpy_filtering.markdown58 **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/
DboxFilter.cl166 __kernel void boxFilter(__global const uchar * srcptr, int src_step, int srcOffsetX, int srcOffsetY…
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java219 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/
Dtest_stereomatching.cpp87 Mat avgDxI2; boxFilter( dxI2, avgDxI2, CV_32FC1, Size(texturelessWidth,texturelessWidth) ); in computeTextureBasedMasks()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java1005 …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
Dimgproc.cpp1994 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/
Dcorner.cpp365 boxFilter(cov, cov, cov.depth(), Size(block_size, block_size), in cornerEigenValsVecs()
Dsmooth.cpp1307 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()
Dthresh.cpp1299 boxFilter( src, mean, src.type(), Size(blockSize, blockSize), in adaptiveThreshold()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp1219 CV_EXPORTS_W void boxFilter( InputArray src, OutputArray dst, int ddepth,