일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비트단위논리연산
- 진수
- face recognition
- 10진수
- 비교연산
- 파이썬
- 산술연산
- OpenCV
- 8진수
- 불 자료형
- 선택실행구조
- 문자열
- 논리연산
- 출력
- bitwise
- 코드업
- input()
- 기초100제
- 2차원배열
- 입출력
- 반복실행구조
- 딥러닝
- 2진수
- 아스키코드
- codeup
- 불 연산
- 종합
- Docker
- 기초 100제
- 16진수
- Today
- Total
DeepFlowest
[Face Recognition] FaceNet 이용하여 실시간 얼굴 인식하기 본문
https://github.com/richmondu/facenet/tree/master/usage
위 링크를 참고하여 웹캠을 이용한 실시간 얼굴 인식 세미 프로젝트를 진행해 보았다.
>> pip install scipy==1.1.0
>> git clone https://github.com/richmondu/facenet.git
>> conda activate venv
>> cd facenet
>> requirements.txt 파일에 tensorflow 버전 1.15.3으로 변경
>> pip install -r requirements.txt
>> pip install facenet
파일 다운로드 후 facenet\usage\models에 위치시키기
https://drive.google.com/open?id=1EXPBSXwTaqrSC0OhUdXNmKSh9qJUQ55-
https://drive.google.com/open?id=1R77HmFADxe87GmoLwzfgMu_HY0IhcyBz
Add photos in facenet\usage\datasets\train
>> cd usage
■ Training
python classifier.py TRAIN datasets/train models/20180408-102900/20180408-102900.pb models/datasets_classifier.pkl --batch_size 1000
>> python classifier.py TRAIN datasets/train models/20180402-114759/20180402-114759.pb models/datasets_classifier.pkl --batch_size 1000
■ Testing
python classifier.py CLASSIFY datasets/test models/20180408-102900/20180408-102900.pb models/datasets_classifier.pkl
>> python classifier.py CLASSIFY datasets/test models/20180402-114759/20180402-114759.pb models/datasets_classifier.pkl
■ Testing w/a webcam
================================
python real_time_face_recognition.py --model models/20180408-102900 --classifier models/datasets_classifier.pkl
>> python real_time_face_recognition.py --model models/20180402-114759 --classifier models/datasets_classifier.pkl
또는
>> python real_time_face_recognition.py
'Computer Vision > 실습, 세미 프로젝트' 카테고리의 다른 글
[Object Detection] YOLO v4 설치 및 demo 실행 : window+python 버전 (6) | 2020.10.12 |
---|---|
Video Inpainting2 (0) | 2020.09.25 |
[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv) (1) | 2020.08.06 |
[Face Recognition] 실시간 얼굴 인식 (Haar feature 기반 cascade classifier 이용) (0) | 2020.08.05 |
[OpenCV] 코드 실습 (0) | 2020.05.14 |