├── .gitignore ├── ArcFace.py ├── LICENSE ├── Liveness ├── data.py ├── inference.py ├── livenessnet.py ├── plot.png └── train.py ├── README.md ├── app.py ├── inference.py ├── inference_img.py ├── metrics.png ├── models ├── deploy.prototxt ├── liveness.model ├── mmod_human_face_detector.dat ├── opencv_face_detector.pbtxt ├── opencv_face_detector_uint8.pb └── res10_300x300_ssd_iter_140000_fp16.caffemodel ├── my_utils.py ├── norm_img.py ├── requirements.txt ├── take_imgs.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/.gitignore -------------------------------------------------------------------------------- /ArcFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/ArcFace.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/LICENSE -------------------------------------------------------------------------------- /Liveness/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/Liveness/data.py -------------------------------------------------------------------------------- /Liveness/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/Liveness/inference.py -------------------------------------------------------------------------------- /Liveness/livenessnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/Liveness/livenessnet.py -------------------------------------------------------------------------------- /Liveness/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/Liveness/plot.png -------------------------------------------------------------------------------- /Liveness/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/Liveness/train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/app.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/inference.py -------------------------------------------------------------------------------- /inference_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/inference_img.py -------------------------------------------------------------------------------- /metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/metrics.png -------------------------------------------------------------------------------- /models/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/deploy.prototxt -------------------------------------------------------------------------------- /models/liveness.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/liveness.model -------------------------------------------------------------------------------- /models/mmod_human_face_detector.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/mmod_human_face_detector.dat -------------------------------------------------------------------------------- /models/opencv_face_detector.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/opencv_face_detector.pbtxt -------------------------------------------------------------------------------- /models/opencv_face_detector_uint8.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/opencv_face_detector_uint8.pb -------------------------------------------------------------------------------- /models/res10_300x300_ssd_iter_140000_fp16.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/models/res10_300x300_ssd_iter_140000_fp16.caffemodel -------------------------------------------------------------------------------- /my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/my_utils.py -------------------------------------------------------------------------------- /norm_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/norm_img.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/requirements.txt -------------------------------------------------------------------------------- /take_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/take_imgs.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naseemap47/FaceRecognition-MTCNN-ArcFace/HEAD/train.py --------------------------------------------------------------------------------