Added continous hand tracking

This commit is contained in:
DuOtto
2026-08-02 16:37:29 +02:00
parent db5d09e156
commit 936d8e0531
8 changed files with 74 additions and 37 deletions
+4 -4
View File
@@ -2,10 +2,10 @@ import cv2
import numpy as np
# ---- Board parameters (CHANGE THESE ONLY IF YOU REPRINT) ----
squares_x = 6 # number of chessboard squares in X
squares_y = 9 # number of chessboard squares in Y
square_length = 25 # mm
marker_length = 18 # mm (must be < square_length)
squares_x = 4 # number of chessboard squares in X
squares_y = 5 # number of chessboard squares in Y
square_length = 50 # mm
marker_length = 36 # mm (must be < square_length)
dictionary_id = cv2.aruco.DICT_4X4_50
dpi = 300 # print DPI
# ------------------------------------------------------------