HomeSort by relevance Sort by last modified time
    Searched full:imaxval (Results 1 - 1 of 1) sorted by null

  /external/opencv/cv/src/
cvthresh.cpp 311 int ithresh, imaxval, cn; local
392 imaxval = cvRound(maxval);
394 imaxval = ithresh;
395 imaxval = CV_CAST_8U(imaxval);
403 int v = type == CV_THRESH_BINARY ? (ithresh >= 255 ? 0 : imaxval) :
404 type == CV_THRESH_BINARY_INV ? (ithresh >= 255 ? imaxval : 0) :
405 type == CV_THRESH_TRUNC ? imaxval : 0;
425 if( imaxval < 255 )
427 (uchar)imaxval, dst->data.ptr, dst_step, roi ))
    [all...]

Completed in 49 milliseconds