apirrone
commited on
Commit
·
6d0e17c
1
Parent(s):
8c737fd
comment
Browse files- hand_tracker_app/main.py +2 -0
hand_tracker_app/main.py
CHANGED
|
@@ -31,6 +31,8 @@ class HandTrackerApp(ReachyMiniApp):
|
|
| 31 |
# Adjust this value to control how much the head moves up/down based on vertical error
|
| 32 |
kz = 0.04
|
| 33 |
|
|
|
|
|
|
|
| 34 |
def run(self, reachy_mini: ReachyMini, stop_event: threading.Event):
|
| 35 |
hand_tracker = HandTracker()
|
| 36 |
|
|
|
|
| 31 |
# Adjust this value to control how much the head moves up/down based on vertical error
|
| 32 |
kz = 0.04
|
| 33 |
|
| 34 |
+
# TODO Normalize the gains depending on the camera resolution. Arducam and ReachyMiniCam don't have the same default resolution so the tuning is wrong.
|
| 35 |
+
# Tuned for Arducam (Reachy Mini Beta)
|
| 36 |
def run(self, reachy_mini: ReachyMini, stop_event: threading.Event):
|
| 37 |
hand_tracker = HandTracker()
|
| 38 |
|