DeepFlowest

[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv) 본문

Computer Vision/실습, 세미 프로젝트

[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv)

Orange57 2020. 8. 6. 21:40
728x90
반응형
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
Comments