├── .gitignore ├── README.md ├── cal_128XVector_user_facenet.py ├── collect_frame_to_csv.py ├── data └── data.csv ├── detect_face.py ├── face_detector_MTcnn.py ├── facenet.py ├── model ├── det1.npy ├── det2.npy └── det3.npy └── realtime_detect_face_and_recognition.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/README.md -------------------------------------------------------------------------------- /cal_128XVector_user_facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/cal_128XVector_user_facenet.py -------------------------------------------------------------------------------- /collect_frame_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/collect_frame_to_csv.py -------------------------------------------------------------------------------- /data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/data/data.csv -------------------------------------------------------------------------------- /detect_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/detect_face.py -------------------------------------------------------------------------------- /face_detector_MTcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/face_detector_MTcnn.py -------------------------------------------------------------------------------- /facenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/facenet.py -------------------------------------------------------------------------------- /model/det1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/model/det1.npy -------------------------------------------------------------------------------- /model/det2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/model/det2.npy -------------------------------------------------------------------------------- /model/det3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/model/det3.npy -------------------------------------------------------------------------------- /realtime_detect_face_and_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/windylijie/face-detect-MTcnn-faceNet/HEAD/realtime_detect_face_and_recognition.py --------------------------------------------------------------------------------