fixed "corners2" to "corners" & nicer whitespace

This commit is contained in:
Hannes 2016-05-17 19:36:32 +02:00
parent 764a1f5947
commit 3b2a194c30

View File

@ -134,7 +134,7 @@ for fname in images:
imgpoints.append(corners)
# Draw and display the corners
cv2.drawChessboardCorners(img, (7,6), corners2,ret)
cv2.drawChessboardCorners(img, (7,6), corners, ret)
cv2.imshow('img', img)
cv2.waitKey(500)