Searched refs:adaptiveThreshold (Results 1 – 9 of 9) sorted by relevance
/external/opencv3/samples/cpp/tutorial_code/ImgProc/ |
D | Morphology_3.cpp | 47 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/ |
D | perf_threshold.cpp | 66 PERF_TEST_P(Size_AdaptThreshType_AdaptThreshMethod_BlockSize, adaptiveThreshold, 89 …TEST_CYCLE() adaptiveThreshold(src, dst, maxValue, adaptThreshMethod, adaptThreshType, blockSize, …
|
/external/opencv3/samples/python2/ |
D | digits_video.py | 36 … 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/ |
D | py_thresholding.markdown | 9 - 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/ |
D | thresh.cpp | 1276 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/ |
D | imgproc.hpp | 2479 CV_EXPORTS_W void adaptiveThreshold( InputArray src, OutputArray dst,
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 143 …Imgproc.adaptiveThreshold(src, dst, 1, Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 3, 0… in testAdaptiveThreshold()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 1648 …public static void adaptiveThreshold(Mat src, Mat dst, double maxValue, int adaptiveMethod, int th… in adaptiveThreshold() method in Imgproc
|
D | imgproc.cpp | 3426 …cv::adaptiveThreshold( src, dst, (double)maxValue, (int)adaptiveMethod, (int)thresholdType, (int)b… in Java_org_opencv_imgproc_Imgproc_adaptiveThreshold_10()
|