Searched refs:thresh_img (Results 1 – 1 of 1) sorted by relevance
/external/opencv/cv/src/ |
D | cvcalibinit.cpp | 133 CvMemStorage *storage, CvMat *image, CvMat *thresh_img, int dilation, int flags ); 209 CvMat* thresh_img = 0; in cvFindChessboardCorners() local 245 CV_CALL( thresh_img = cvCreateMat( img->rows, img->cols, CV_8UC1 )); in cvFindChessboardCorners() 287 …CALL( quad_count = icvGenerateQuadsEx( &quads, &corners, storage, img, thresh_img, dilations, flag… in cvFindChessboardCorners() 298 cvAdaptiveThreshold( img, thresh_img, 255, in cvFindChessboardCorners() 301 cvDilate( thresh_img, thresh_img, 0, dilations-1 ); in cvFindChessboardCorners() 314 cvThreshold( img, thresh_img, thresh_level, 255, CV_THRESH_BINARY ); in cvFindChessboardCorners() 315 cvDilate( thresh_img, thresh_img, 0, dilations ); in cvFindChessboardCorners() 321 cvCvtColor(thresh_img,dbg_img,CV_GRAY2BGR); in cvFindChessboardCorners() 327 cvRectangle( thresh_img, cvPoint(0,0), cvPoint(thresh_img->cols-1, in cvFindChessboardCorners() [all …]
|