Skip to content

Commit

Permalink
[backport humble] Fix spelling error for cv2.aruco.DICT from 6x6_50 t…
Browse files Browse the repository at this point in the history
…o 7x7_1000 (#961) (#1004)

Backport #961 fix to humble

Co-authored-by: Vishal Balaji <vishalvichu45@gmail.com>
Co-authored-by: Vishal Balaji <vishal.balaji@schanzer-racing.de>
  • Loading branch information
3 people authored Jun 21, 2024
1 parent 1860ddc commit e0ac7ec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions camera_calibration/src/camera_calibration/calibrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,14 @@ def __init__(self, pattern="chessboard", n_cols = 0, n_rows = 0, dim = 0.0, mark
"5x5_100" : cv2.aruco.DICT_5X5_100,
"5x5_250" : cv2.aruco.DICT_5X5_250,
"5x5_1000" : cv2.aruco.DICT_5X5_1000,
"6x6_50" : cv2.aruco.DICT_6x6_50,
"6x6_100" : cv2.aruco.DICT_6x6_100,
"6x6_250" : cv2.aruco.DICT_6x6_250,
"6x6_1000" : cv2.aruco.DICT_6x6_1000,
"7x7_50" : cv2.aruco.DICT_7x7_50,
"7x7_100" : cv2.aruco.DICT_7x7_100,
"7x7_250" : cv2.aruco.DICT_7x7_250,
"7x7_1000" : cv2.aruco.DICT_7x7_1000}[aruco_dict])
"6x6_50" : cv2.aruco.DICT_6X6_50,
"6x6_100" : cv2.aruco.DICT_6X6_100,
"6x6_250" : cv2.aruco.DICT_6X6_250,
"6x6_1000" : cv2.aruco.DICT_6X6_1000,
"7x7_50" : cv2.aruco.DICT_7X7_50,
"7x7_100" : cv2.aruco.DICT_7X7_100,
"7x7_250" : cv2.aruco.DICT_7X7_250,
"7x7_1000" : cv2.aruco.DICT_7X7_1000}[aruco_dict])
self.charuco_board = cv2.aruco.CharucoBoard_create(self.n_cols, self.n_rows, self.dim, self.marker_size,
self.aruco_dict)

Expand Down

0 comments on commit e0ac7ec

Please sign in to comment.