Commit 3474e370 authored by Ilya Lysenkov's avatar Ilya Lysenkov

Fixed #1063

parent 6a4ab4a9
...@@ -461,7 +461,7 @@ int main( int argc, char** argv ) ...@@ -461,7 +461,7 @@ int main( int argc, char** argv )
{ {
case CHESSBOARD: case CHESSBOARD:
found = findChessboardCorners( view, boardSize, pointbuf, found = findChessboardCorners( view, boardSize, pointbuf,
CV_CALIB_CB_ADAPTIVE_THRESH & CV_CALIB_CB_FAST_CHECK & CV_CALIB_CB_NORMALIZE_IMAGE); CV_CALIB_CB_ADAPTIVE_THRESH | CV_CALIB_CB_FAST_CHECK | CV_CALIB_CB_NORMALIZE_IMAGE);
break; break;
case CIRCLES_GRID: case CIRCLES_GRID:
found = findCirclesGrid( view, boardSize, pointbuf ); found = findCirclesGrid( view, boardSize, pointbuf );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment