Home
last modified time | relevance | path

Searched refs:CV_THRESH_BINARY (Results 1 – 20 of 20) sorted by relevance

/external/opencv/cv/src/
Dcvthresh.cpp53 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()
Dcvadapthresh.cpp54 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()
Dcvcalibinit.cpp299 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()
Dcvcontours.cpp320 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY ); in cvStartFindContours()
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DimageSegmentation.cpp77 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/
Dcheckchessboard.cpp142 cvThreshold(white, thresh, thresh_level + black_white_gap, 255, CV_THRESH_BINARY); in cvCheckChessboard()
Dcalibinit.cpp343 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/
Dintroduction_to_pca.cpp119 threshold(gray, bw, 50, 255, CV_THRESH_BINARY | CV_THRESH_OTSU); in main()
/external/opencv/
Dcvjni.cpp227 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/
Dtypes_c.h571 CV_THRESH_BINARY =0, /**< value = value > threshold ? max_value : 0 */ enumerator
Dimgproc_c.h864 int threshold_type CV_DEFAULT(CV_THRESH_BINARY),
/external/opencv3/modules/imgproc/test/
Dtest_thresh.cpp151 case CV_THRESH_BINARY: in test_threshold()
Dtest_contours.cpp201 cvThreshold( img, img, val - 2, val, CV_THRESH_BINARY ); in cvTsMarkContours()
/external/opencv/cvaux/src/
Dcvfacedetection.cpp120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY); in FindContours()
Dcvsegment.cpp513 cvThreshold( canny, canny, 1, 1, CV_THRESH_BINARY ); in cvSegmentImage()
Dcvvecfacetracking.cpp310 cvThreshold(img, thresh, colors[i], 255.0, CV_THRESH_BINARY); in FindContours()
/external/opencv/cv/include/
Dcv.h941 #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/
Dcontours.cpp303 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY ); in cvStartFindContours()
Dthresh.cpp1311 if( type == CV_THRESH_BINARY ) in adaptiveThreshold()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java54 CV_THRESH_BINARY = 0, field in Imgproc