/external/opencv/cv/src/ |
D | cvthresh.cpp | 53 case CV_THRESH_BINARY: in icvThresh_8u_C1R() 130 case CV_THRESH_BINARY: in icvThresh_32f_C1R() 353 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV ) in cvThreshold() 364 CV_CALL( cvCmpS( src, thresh, dst, type == CV_THRESH_BINARY ? CV_CMP_GT : CV_CMP_LE )); in cvThreshold() 399 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV || in cvThreshold() 403 int v = type == CV_THRESH_BINARY ? (ithresh >= 255 ? 0 : imaxval) : in cvThreshold() 417 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV ) in cvThreshold() 423 type == CV_THRESH_BINARY ? cvCmpGreater : cvCmpLessEq )); in cvThreshold()
|
D | cvadapthresh.cpp | 54 int idelta = type == CV_THRESH_BINARY ? cvCeil(delta) : cvFloor(delta); in icvAdaptiveThreshold_MeanC() 79 if( type == CV_THRESH_BINARY ) in icvAdaptiveThreshold_MeanC() 114 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV ) in cvAdaptiveThreshold()
|
D | cvcalibinit.cpp | 299 CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, block_size, 0 ); in cvFindChessboardCorners() 314 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY ); in cvFindChessboardCorners() 1809 cvThreshold( image, thresh_img, l, 255, CV_THRESH_BINARY ); in icvGenerateQuadsEx()
|
D | cvcontours.cpp | 320 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY ); in cvStartFindContours()
|
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
D | imageSegmentation.cpp | 77 threshold(bw, bw, 40, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); in main() 95 threshold(dist, dist, .4, 1., CV_THRESH_BINARY); in main()
|
/external/opencv3/modules/calib3d/src/ |
D | checkchessboard.cpp | 142 cvThreshold(white, thresh, thresh_level + black_white_gap, 255, CV_THRESH_BINARY); in cvCheckChessboard()
|
D | calibinit.cpp | 343 CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, block_size, (k/2)*5 ); in cvFindChessboardCorners() 358 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY ); in cvFindChessboardCorners()
|
/external/opencv3/samples/cpp/tutorial_code/ml/introduction_to_pca/ |
D | introduction_to_pca.cpp | 119 threshold(gray, bw, 50, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); in main()
|
/external/opencv/ |
D | cvjni.cpp | 227 cvThreshold( grayImage, binaryImage, THRESHOLD, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY ); in Java_org_siprop_opencv_OpenCV_findContours() 730 cvThreshold( hueImage, thresholdImage1, THRESH_BOTTOM, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY );
|
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
D | types_c.h | 571 CV_THRESH_BINARY =0, /**< value = value > threshold ? max_value : 0 */ enumerator
|
D | imgproc_c.h | 864 int threshold_type CV_DEFAULT(CV_THRESH_BINARY),
|
/external/opencv3/modules/imgproc/test/ |
D | test_thresh.cpp | 151 case CV_THRESH_BINARY: in test_threshold()
|
D | test_contours.cpp | 201 cvThreshold( img, img, val - 2, val, CV_THRESH_BINARY ); in cvTsMarkContours()
|
/external/opencv/cvaux/src/ |
D | cvfacedetection.cpp | 120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY); in FindContours()
|
D | cvsegment.cpp | 513 cvThreshold( canny, canny, 1, 1, CV_THRESH_BINARY ); in cvSegmentImage()
|
D | cvvecfacetracking.cpp | 310 cvThreshold(img, thresh, colors[i], 255.0, CV_THRESH_BINARY); in FindContours()
|
/external/opencv/cv/include/ |
D | cv.h | 941 #define CV_THRESH_BINARY 0 /* value = value > threshold ? max_value : 0 */ in LOAD_CHDL() macro 967 int threshold_type CV_DEFAULT(CV_THRESH_BINARY), in LOAD_CHDL()
|
/external/opencv3/modules/imgproc/src/ |
D | contours.cpp | 303 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY ); in cvStartFindContours()
|
D | thresh.cpp | 1311 if( type == CV_THRESH_BINARY ) in adaptiveThreshold()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 54 CV_THRESH_BINARY = 0, field in Imgproc
|