You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 5, 2023. It is now read-only.
Hi I have tried the below code to draw bbox around hand but not drawing properly
(handtracker.py)
bounding box offsets, width and height
bbox_dict = {
"x": dx,
"y": dy,
"w": w,
"h": h
}
cv2.rectangle(frame, (bbox_dict['x'], bbox_dict['y']),
(bbox_dict['x'] + bbox_dict['w'], bbox_dict['y'] + bbox_dict['h']), (0, 255, 0), 1)
please advise