Home
last modified time | relevance | path

Searched refs:adaptiveThreshold (Results 1 – 9 of 9) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/ImgProc/
DMorphology_3.cpp47 adaptiveThreshold(~gray, bw, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 15, -2); in main()
103 adaptiveThreshold(vertical, edges, 255, CV_ADAPTIVE_THRESH_MEAN_C, THRESH_BINARY, 3, -2); in main()
/external/opencv3/modules/imgproc/perf/
Dperf_threshold.cpp66 PERF_TEST_P(Size_AdaptThreshType_AdaptThreshMethod_BlockSize, adaptiveThreshold,
89 …TEST_CYCLE() adaptiveThreshold(src, dst, maxValue, adaptThreshMethod, adaptThreshType, blockSize, …
/external/opencv3/samples/python2/
Ddigits_video.py36 … bin = cv2.adaptiveThreshold(gray, 255, cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY_INV, 31, 10)
/external/opencv3/doc/py_tutorials/py_imgproc/py_thresholding/
Dpy_thresholding.markdown9 - You will learn these functions : **cv2.threshold**, **cv2.adaptiveThreshold** etc.
94 th2 = cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_MEAN_C,\
96 th3 = cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C,\
/external/opencv3/modules/imgproc/src/
Dthresh.cpp1276 void cv::adaptiveThreshold( InputArray _src, OutputArray _dst, double maxValue, in adaptiveThreshold() function in cv
1358 cv::adaptiveThreshold( src, dst, maxValue, method, type, blockSize, delta ); in cvAdaptiveThreshold()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp2479 CV_EXPORTS_W void adaptiveThreshold( InputArray src, OutputArray dst,
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java143 …Imgproc.adaptiveThreshold(src, dst, 1, Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 3, 0… in testAdaptiveThreshold()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java1648 …public static void adaptiveThreshold(Mat src, Mat dst, double maxValue, int adaptiveMethod, int th… in adaptiveThreshold() method in Imgproc
Dimgproc.cpp3426 …cv::adaptiveThreshold( src, dst, (double)maxValue, (int)adaptiveMethod, (int)thresholdType, (int)b… in Java_org_opencv_imgproc_Imgproc_adaptiveThreshold_10()