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

  /external/opencv3/modules/imgproc/test/
test_thresh.cpp 129 int imaxval, ithresh2; local
134 imaxval = saturate_cast<uchar>(maxval);
139 imaxval = saturate_cast<short>(maxval);
144 imaxval = cvRound(maxval);
159 dst[j] = (uchar)(src[j] > ithresh ? imaxval : 0);
166 dst[j] = (short)(src[j] > ithresh ? imaxval : 0);
185 dst[j] = (uchar)(src[j] > ithresh ? 0 : imaxval);
192 dst[j] = (short)(src[j] > ithresh ? 0 : imaxval);
  /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...]
  /external/opencv3/modules/imgproc/src/
thresh.cpp 1214 int imaxval = cvRound(maxval); local
1241 int imaxval = cvRound(maxval); local
1307 uchar imaxval = saturate_cast<uchar>(maxValue); local
    [all...]

Completed in 169 milliseconds