MediaPipe를 이용해 손 인식하기 🖐
import cv2import mediapipe as mpimport timecap = cv2.VideoCapture(0)mp_drawing = mp.solutions.drawing_utils # 손 위에 그림을 그릴 수 있는 메소드mp_hands = mp.solutions.hands # MediaPipe solution에서 제공하는 손 모델hands = mp_hands.Hands( max_num_hands = 1, # 인식할 손모양의 갯수, 생략하면 2가 지정된다. min_detection_confidence = 0.5, # 성공적인 것으로 간주되는 최소 신뢰도 값. 0.0 ~1.0사이로서 기본값은 0.5이다. min_tracking_confidence = 0.5) # 손 랜드마크가 성..