Searched refs:CV_THRESH_BINARY (Results 1 - 9 of 9) sorted by relevance

/external/opencv/cv/src/
H A Dcvadapthresh.cpp54 int idelta = type == CV_THRESH_BINARY ? cvCeil(delta) : cvFloor(delta);
79 if( type == CV_THRESH_BINARY )
114 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV )
H A Dcvthresh.cpp53 case CV_THRESH_BINARY:
130 case CV_THRESH_BINARY:
353 if( type != CV_THRESH_BINARY && type != CV_THRESH_BINARY_INV )
355 "In case of different types only CV_THRESH_BINARY "
364 CV_CALL( cvCmpS( src, thresh, dst, type == CV_THRESH_BINARY ? CV_CMP_GT : CV_CMP_LE ));
399 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV ||
403 int v = type == CV_THRESH_BINARY ? (ithresh >= 255 ? 0 : imaxval) :
417 if( type == CV_THRESH_BINARY || type == CV_THRESH_BINARY_INV )
423 type == CV_THRESH_BINARY ? cvCmpGreater : cvCmpLessEq ));
H A Dcvcalibinit.cpp299 CV_ADAPTIVE_THRESH_MEAN_C, CV_THRESH_BINARY, block_size, 0 );
314 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY );
1809 cvThreshold( image, thresh_img, l, 255, CV_THRESH_BINARY );
H A Dcvcontours.cpp320 cvThreshold( mat, mat, 0, 1, CV_THRESH_BINARY );
/external/opencv/
H A Dcvjni.cpp227 cvThreshold( grayImage, binaryImage, THRESHOLD, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY );
730 cvThreshold( hueImage, thresholdImage1, THRESH_BOTTOM, THRESHOLD_MAX_VALUE, CV_THRESH_BINARY );
/external/opencv/cvaux/src/
H A Dcvfacedetection.cpp120 cvThreshold(imgGray, m_imgThresh, (double)l, (double)255, CV_THRESH_BINARY);
H A Dcvsegment.cpp513 cvThreshold( canny, canny, 1, 1, CV_THRESH_BINARY );
H A Dcvvecfacetracking.cpp310 cvThreshold(img, thresh, colors[i], 255.0, CV_THRESH_BINARY);
/external/opencv/cv/include/
H A Dcv.h941 #define CV_THRESH_BINARY 0 /* value = value > threshold ? max_value : 0 */ macro
967 int threshold_type CV_DEFAULT(CV_THRESH_BINARY),

Completed in 156 milliseconds