- 미디어파이프 설치 : !pip install mediapipe opencv-python import cv2 import mediapipe as mp import numpy as np mp_drawing = mp.solutions.drawing_utils mp_pose = mp.solutions.pose # 웹캠실행 cap = cv2.VideoCapture(0) while cap.isOpened(): ret, frame = cap.read() cv2.imshow('Mediapipe Feed', frame) if cv2.waitKey(10) & 0xFF == 27: # esc 키를 누르면 닫음 break cap.release() cv2.destroyAllWindows() - 기본 웹캠 1. 감지 cap ..