Skip to content

Commit

Permalink
Update board details for calibrate_camera
Browse files Browse the repository at this point in the history
  • Loading branch information
Jcparkyn committed Nov 11, 2023
1 parent ac1b171 commit 8e40339
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions python/calibrate_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@


# ChAruco board variables
CHARUCOBOARD_ROWCOUNT = 7
CHARUCOBOARD_COLCOUNT = 10
ARUCO_DICT = aruco.getPredefinedDictionary(aruco.DICT_5X5_250)
CHARUCOBOARD_ROWCOUNT = 8
CHARUCOBOARD_COLCOUNT = 12
ARUCO_DICT = aruco.getPredefinedDictionary(aruco.DICT_4X4_100)

# Create constants to be passed into OpenCV and Aruco methods
CHARUCO_BOARD = aruco.CharucoBoard(
(CHARUCOBOARD_COLCOUNT, CHARUCOBOARD_ROWCOUNT),
0.028,
0.022,
0.024,
0.018,
ARUCO_DICT)

# Create the arrays and variables we'll use to store info like corners and IDs from images processed
Expand Down

0 comments on commit 8e40339

Please sign in to comment.