Home
last modified time | relevance | path

Searched refs:CV_THRESH_TRUNC (Results 1 – 5 of 5) sorted by relevance

/external/opencv/cv/src/
Dcvthresh.cpp65 case CV_THRESH_TRUNC: in icvThresh_8u_C1R()
152 case CV_THRESH_TRUNC: in icvThresh_32f_C1R()
393 if( type == CV_THRESH_TRUNC ) in cvThreshold()
400 ((type == CV_THRESH_TRUNC || type == CV_THRESH_TOZERO_INV) && ithresh < 0) || in cvThreshold()
405 type == CV_THRESH_TRUNC ? imaxval : 0; in cvThreshold()
431 else if( type == CV_THRESH_TRUNC || type == CV_THRESH_TOZERO_INV ) in cvThreshold()
437 (uchar)(type == CV_THRESH_TRUNC ? ithresh : 0) )); in cvThreshold()
460 if( type == CV_THRESH_TRUNC || type == CV_THRESH_TOZERO_INV ) in cvThreshold()
466 type == CV_THRESH_TRUNC ? (float)thresh : 0 )); in cvThreshold()
/external/opencv3/modules/imgproc/include/opencv2/imgproc/
Dtypes_c.h573 CV_THRESH_TRUNC =2, /**< value = value > threshold ? threshold : value */ enumerator
/external/opencv3/modules/imgproc/test/
Dtest_thresh.cpp203 case CV_THRESH_TRUNC: in test_threshold()
/external/opencv/cv/include/
Dcv.h943 #define CV_THRESH_TRUNC 2 /* value = value > threshold ? threshold : value */ in LOAD_CHDL() macro
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java56 CV_THRESH_TRUNC = 2, field in Imgproc