반응형
MediaPipe로 구현한 손으로 그림 그리기
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..

가위바위보를 인식하는 Mediapipe hand Python 예제
Deep Learning & Machine Learning/MediaPipe2023. 10. 17. 22:14가위바위보를 인식하는 Mediapipe hand Python 예제

Python용 Mediapipe의 손가락 인식 코드를 수정하여 가위, 바위, 보를 인식하여 화면에 출력하는 예제 코드를 만들었습니다. OpenPose의 손인식에 비해 주위 환경 영향이 거의 없으며 손가락 인식이 끊김없이 지속적으로 잘 됩니다. 2021. 02. 19 최초작성 테스트 영상입니다. 실행 결과를 보여주고 있는 유튜브 영상입니다. https://youtu.be/iFeu2xpIiiU?feature=shared 전체 소스코드입니다. # 원본 코드 https://google.github.io/mediapipe/solutions/hands.html """The 21 hand landmarks.""" # 손가락 위치 정의 참고 https://google.github.io/mediapipe/images/m..

Deep Learning & Machine Learning/MediaPipe2023. 10. 16. 22:13mediapipe로 만든 핸드 마우스

Python용 Mediapipe를 사용하여 간단하게 만들어본 핸드 마우스입니다. 시간나는대로 발전시켜 볼 생각입니다. 2022. 11. 24 최초작성 동작영상은 유튜브를 참고하세요. 아직은 동작이 단순한 것만 있습니다. https://youtu.be/zpMf_m7g058 전체 코드입니다. # 원본 코드 https://google.github.io/mediapipe/solutions/hands.html # 마우스 제어 참고 https://blankspace-dev.tistory.com/416 """The 21 hand landmarks.""" # 손가락 위치 정의 참고 https://mediapipe.dev/images/mobile/hand_landmarks.png # # WRIST = 0 # THUMB_..

Deep Learning & Machine Learning/MediaPipe2021. 7. 24. 18:40Mediapipe의 Hello_World 예제 사용 방법

Mediapipe의 Hello_World 예제 사용방법을 소개합니다. 2021. 7. 24 최초작성 Mediapipe를 Ubuntu에 설치하는 방법을 먼저 진행하세요. MediaPipe를 Ubuntu에 설치하는 방법 https://webnautes.tistory.com/1404 다음 위치에 Hello World 예제가 존재합니다. webnautes@webnautes-PC:~/mediapipe$ pwd /home/webnautes/mediapipe webnautes@webnautes-PC:~/mediapipe$ find . | grep hello_world.cc ./mediapipe/examples/desktop/hello_world/hello_world.cc 해당 파일을 열어 출력할 문자를 안녕하세요로 ..

MediaPipe를 Ubuntu에 설치하는 방법
Deep Learning & Machine Learning/MediaPipe2021. 7. 15. 23:08MediaPipe를 Ubuntu에 설치하는 방법

Ubuntu 20.04에 MediaPipe를 설치하여 간단한 예제를 실행시켜 보는 과정을 다루고 있습니다. Ubuntu 18.04도 같은 방식으로 진행하면 됩니다. MediaPipe가 무엇인지 궁금하시면 다음 두 링크를 방문해보세요.. https://github.com/google/mediapipe https://google.github.io/mediapipe/ 다음과 같은 것들을 할 수 있다고 합니다. . 이제 겨우 설치만 해봐서 이후 단계는 물어보셔도 아직 모릅니다 ^^; Android, PC, Google Coral, Web을 위한 예제가 준비되어 있습니다. Face Detection Multi-hand Tracking Hand Tracking Hair Segmentation Object Detec..

반응형
image