Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 반복실행구조
- OpenCV
- 문자열
- 16진수
- 기초100제
- 논리연산
- 코드업
- face recognition
- 기초 100제
- 파이썬
- 8진수
- 산술연산
- input()
- bitwise
- Docker
- 불 자료형
- 10진수
- 선택실행구조
- 불 연산
- 2진수
- 비트단위논리연산
- 2차원배열
- 비교연산
- 출력
- 진수
- 종합
- 딥러닝
- codeup
- 아스키코드
- 입출력
Archives
- Today
- Total
DeepFlowest
[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv) 본문
Computer Vision/실습, 세미 프로젝트
[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv)
Orange57 2020. 8. 6. 21:40728x90
반응형
SMALL
https://github.com/ageitgey/face_recognition
■ 설치
개발 환경
- Python 3.7
- Linux Ubuntu 18.04.4
1. github에서 code 복사
>> git clone https://github.com/davisking/dlib.git
2. dlib library 설치
>> cd dlib
>> mkdir build; cd build; cmake ..; cmake --build .
3. Python extensions 설치
>> cd ..
>>python3 setup.py install
4. Face Recognition 라이브러리 설치
>> pip3 install face_recognition
5. OpenCV 설치
>> pip3 install opencv-contrib-python
728x90
반응형
LIST
'Computer Vision > 실습, 세미 프로젝트' 카테고리의 다른 글
[Object Detection] YOLO v4 설치 및 demo 실행 : window+python 버전 (6) | 2020.10.12 |
---|---|
Video Inpainting2 (0) | 2020.09.25 |
[Face Recognition] FaceNet 이용하여 실시간 얼굴 인식하기 (0) | 2020.08.11 |
[Face Recognition] 실시간 얼굴 인식 (Haar feature 기반 cascade classifier 이용) (0) | 2020.08.05 |
[OpenCV] 코드 실습 (0) | 2020.05.14 |
Comments