SmartPicasso/gestures/gesture_recognition.py

39 lines
1.2 KiB
Python
Raw Normal View History

2020-12-28 23:43:48 +01:00
import cv2
import mediapipe as mp
2021-01-03 13:33:47 +01:00
import simple_gestures_lib as sgest
2020-12-29 21:46:50 +01:00
2020-12-28 23:43:48 +01:00
mp_drawing = mp.solutions.drawing_utils
mp_hands = mp.solutions.hands
2020-12-29 21:42:16 +01:00
from math import sqrt
2020-12-28 23:43:48 +01:00
hands = mp_hands.Hands(
min_detection_confidence=0.5, min_tracking_confidence=0.5)
cap = cv2.VideoCapture(0)
while cap.isOpened():
2020-12-29 21:46:50 +01:00
success, image = cap.read()
image = cv2.cvtColor(cv2.flip(image, 1), cv2.COLOR_BGR2RGB)
image.flags.writeable = False
results = hands.process(image)
2020-12-28 23:43:48 +01:00
2020-12-29 21:46:50 +01:00
image.flags.writeable = True
image = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
2020-12-29 21:42:16 +01:00
if results.multi_hand_landmarks:
2020-12-29 21:46:50 +01:00
for hand_landmarks in results.multi_hand_landmarks:
mp_drawing.draw_landmarks(
image, hand_landmarks, mp_hands.HAND_CONNECTIONS)
if cv2.waitKey(33) == ord('s'):
if results.multi_hand_landmarks:
for hand_landmarks in results.multi_hand_landmarks:
2021-01-03 13:33:47 +01:00
print(sgest.check_index_finger(hand_landmarks))
print(sgest.check_middle_finger(hand_landmarks))
print(sgest.check_ring_finger(hand_landmarks))
print(sgest.check_pinky_finger(hand_landmarks))
2020-12-29 21:42:16 +01:00
2020-12-29 21:46:50 +01:00
cv2.imshow('MediaPipe Hands', image)
if cv2.waitKey(5) & 0xFF == 27:
break
2020-12-28 23:43:48 +01:00
hands.close()
cap.release()