From 97d7a4a86e9f3acada00897a8aad8b5d6a5f4ea5 Mon Sep 17 00:00:00 2001 From: keith siilats Date: Fri, 5 May 2023 13:23:09 -0400 Subject: [PATCH] Update aruco_detect_board_charuco.py --- samples/python/aruco_detect_board_charuco.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/python/aruco_detect_board_charuco.py b/samples/python/aruco_detect_board_charuco.py index 2625023ad29b..ffb5ac677d11 100644 --- a/samples/python/aruco_detect_board_charuco.py +++ b/samples/python/aruco_detect_board_charuco.py @@ -51,7 +51,7 @@ def main(): sys.exit() width = args.w height = args.h - sqruare_len = args.sl + square_len = args.sl marker_len = args.ml dict = args.d video = args.v @@ -66,7 +66,7 @@ def main(): aruco_dict = cv.aruco.getPredefinedDictionary(dict) board_size = (width, height) - board = cv.aruco.CharucoBoard(board_size, sqruare_len, marker_len, aruco_dict) + board = cv.aruco.CharucoBoard(board_size, square_len, marker_len, aruco_dict) charuco_detector = cv.aruco.CharucoDetector(board) image = None