Here is a snip from part of the code:
for hand in frame.hands:
handType = "Left hand" if hand.is_left else "Right hand"
print(" %s, id %d, position: %s" % (
handType, hand.id, hand.palm_position))
time.sleep(0.5)
Now, the goal is to slow down the process a little (frames), but using that sleep function just slows down the whole prosess and it creates an extreme lag in the system. Removing the hand, and its printing hand positions for 30 more seconds. Anny suggestions?