fixed whitespace

This commit is contained in:
Matt Venn 2014-02-07 22:18:59 +00:00
parent a0bfdb9bf1
commit 3170414ca8

View File

@ -79,7 +79,6 @@ So to find pattern in chess board, we use the function, **cv2.findChessboardCorn
.. seealso:: Instead of chess board, we can use some circular grid, but then use the function **cv2.findCirclesGrid()** to find the pattern. It is said that less number of images are enough when using circular grid. .. seealso:: Instead of chess board, we can use some circular grid, but then use the function **cv2.findCirclesGrid()** to find the pattern. It is said that less number of images are enough when using circular grid.
Once we find the corners, we can increase their accuracy using **cv2.cornerSubPix()**. We can also draw the pattern using **cv2.drawChessboardCorners()**. All these steps are included in below code: Once we find the corners, we can increase their accuracy using **cv2.cornerSubPix()**. We can also draw the pattern using **cv2.drawChessboardCorners()**. All these steps are included in below code:
:: ::
import numpy as np import numpy as np