Searched refs:CV_THRESH_BINARY (Results 1 – 9 of 9) sorted by relevance
/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/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/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()
|