Home
last modified time | relevance | path

Searched refs:CV_THRESH_OTSU (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DimageSegmentation.cpp77 threshold(bw, bw, 40, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); in main()
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/
Dintroduction_to_pca.cpp119 threshold(gray, bw, 50, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); in main()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dtypes_c.h577 CV_THRESH_OTSU =8, /**< use Otsu algorithm to choose the optimal threshold value; enumerator
/external/opencv/cv/src/
Dcvthresh.cpp330 use_otsu = (type & ~CV_THRESH_MASK) == CV_THRESH_OTSU; in cvThreshold()
/external/opencv3/modules/imgproc/src/
Dthresh.cpp1195 CV_Assert( automatic_thresh != (CV_THRESH_OTSU | CV_THRESH_TRIANGLE) ); in threshold()
1196 if( automatic_thresh == CV_THRESH_OTSU ) in threshold()
/external/opencv/cv/include/
Dcv.h948 #define CV_THRESH_OTSU 8 /* use Otsu algorithm to choose the optimal threshold value; in LOAD_CHDL() macro
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java60 CV_THRESH_OTSU = 8, field in Imgproc