Deep Learning & Machine Learning/MediaPipe2023. 10. 18. 21:29MediaPipe로 구현한 손으로 그림 그리기
MediaPipe를 사용하여 손으로 그림 그리는 것을 구현해보았습니다. 2023. 3 .2 최초작성 유튜브 영상 https://youtu.be/S_Op3Qy4e8Q?feature=shared # 원본 코드 https://google.github.io/mediapipe/solutions/hands.html """The 21 hand landmarks.""" # 손가락 위치 정의 참고 https://google.github.io/mediapipe/images/mobile/hand_landmarks.png # # WRIST = 0 # THUMB_CMC = 1 # THUMB_MCP = 2 # THUMB_IP = 3 # THUMB_TIP = 4 엄지 # INDEX_FINGER_MCP = 5 # INDEX_FING..