... | @@ -14,7 +14,7 @@ where  are camera focal lengths,  are camera focal lengths, ![al |
|
We must take pictures with calibration object in the camera's Field of View in many different positions and cover entire picture with as many points as we can. Moreover, we must respect that the whole chessboard must be visible.
|
|
We must take pictures with calibration object in the camera's Field of View (FoV) in many different positions to cover most of FoV. Moreover, we must respect that the whole chessboard must be visible.
|
|
We use OpenCV function `findChessboarCorners(gray,(rows,column),params=None)->ret,corners` for finding the chessboard in pictures, where `corners` are chessboard's internal corners in pixel (u,v) coordinates. After the chessboard is found, the position of corners is made more precise via OpenCV `cornerSubPixel(gray,corners,winSize,zeroZone,criteria)->None`, which finds them with sub-pixel precision. You can read more about this on the page listed above.
|
|
We use OpenCV function `findChessboarCorners(gray,(rows,column),params=None)->ret,corners` for finding the chessboard in pictures, where `corners` are chessboard's internal corners in pixel (u,v) coordinates. After the chessboard is found, the position of corners is made more precise via OpenCV `cornerSubPixel(gray,corners,winSize,zeroZone,criteria)->None`, which finds them with sub-pixel precision. You can read more about this on the page listed above.
|