반응형
Notice
Recent Posts
Recent Comments
- Today
- Total
목록정리/Python library (2)
작심삼일
[conda] conda install
Conda 설치 하기 wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh -b -p $HOME/miniconda $HOME/miniconda/bin/conda init bash 이 커맨드만 입력하면 편하게 conda를 설치할 수 있다.
정리/Python library
2023. 10. 18. 19:31
[MediaPipe] MediaPipe로 face detection하기
코드 mediapipe.solution의 face_detection을 사용한다. face_detection.process를 진행하면 여러 데이터들이 나오는데, 그 중 bounding box만 뽑기 위해서는 아래와 같이 results.detections[0].location_data.relative_bounding_box을 사용한다. import mediapipe as mp import cv2 mp_face_detection = mp.solutions.face_detection face_detection = mp_face_detection.FaceDetection(model_selection=1, min_detection_confidence=0.5) img_path = './gunter.png' img =..
정리/Python library
2023. 3. 14. 20:53