Searched refs:thresh_level (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/calib3d/src/ |
D | checkchessboard.cpp | 140 …for(float thresh_level = black_level; thresh_level < white_level && !result; thresh_level += 20.0f) in cvCheckChessboard() local 142 cvThreshold(white, thresh, thresh_level + black_white_gap, 255, CV_THRESH_BINARY); in cvCheckChessboard() 154 cvThreshold(black, thresh, thresh_level, 255, CV_THRESH_BINARY_INV); in cvCheckChessboard()
|
D | calibinit.cpp | 355 int thresh_level = cvRound( mean - 10 ); in cvFindChessboardCorners() local 356 thresh_level = MAX( thresh_level, 10 ); in cvFindChessboardCorners() 358 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY ); in cvFindChessboardCorners()
|
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 311 int thresh_level = cvRound( mean - 10 ); in cvFindChessboardCorners() local 312 thresh_level = MAX( thresh_level, 10 ); in cvFindChessboardCorners() 314 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY ); in cvFindChessboardCorners()
|