Home | History | Annotate | Download | only in src

Lines Matching refs:thresh

46                   CvSize roi, uchar thresh, uchar maxval, int type )
54 for( i = 0; i <= thresh; i++ )
60 for( i = 0; i <= thresh; i++ )
66 for( i = 0; i <= thresh; i++ )
69 tab[i] = thresh;
72 for( i = 0; i <= thresh; i++ )
78 for( i = 0; i <= thresh; i++ )
114 CvSize roi, float thresh, float maxval, int type )
122 v.f = thresh; iThresh = CV_TOGGLE_FLT(v.i);
159 if( temp > thresh )
160 temp = thresh;
225 low = hist->thresh[0][0];
226 high = hist->thresh[0][1];
297 cvThreshold( const void* srcarr, void* dstarr, double thresh, double maxval, int type )
345 thresh = cvFloor(icvGetThreshVal_Otsu( hist ));
364 CV_CALL( cvCmpS( src, thresh, dst, type == CV_THRESH_BINARY ? CV_CMP_GT : CV_CMP_LE ));
391 ithresh = cvFloor(thresh);
446 ithresh = cvFloor(thresh+1.);
465 dst->data.fl, dst_step, roi, (float)thresh,
466 type == CV_THRESH_TRUNC ? (float)thresh : 0 ));
475 dst->data.fl, dst_step, roi, (float)(thresh*(1 + FLT_EPSILON)), 0 ));
481 (float)thresh, (float)maxval, type );
492 return thresh;