Datasets
Standard Dataset
Face Recognition Data Files for dlib
- Citation Author(s):
- Submitted by:
- Shaolin Liao
- Last updated:
- Tue, 10/06/2020 - 11:07
- DOI:
- 10.21227/r9p0-r710
- Data Format:
- License:
720 Views
- Categories:
0 ratings - Please login to submit your rating.
Abstract
Face recognition data files for paper L. Ou, S. Liao and Z. Qin, "FaceIDP: Face-IDentification Privacy under the Compressed Sensing Framework," submitted to IEEE Transactions on Computers, 2020.
Instructions:
shape_predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat')
face_recognition_model = dlib.face_recognition_model_v1('dlib_face_recognition_resnet_model_v1.dat')
detected_faces = face_detector(image, 1)
shapes_faces = [shape_predictor(image, face) for face in detected_faces]
Dataset Files
- shape_predictor_68_face_landmarks.7z (60.41 MB)
- dlib_face_recognition_resnet_model_v1.7z (19.82 MB)
Comments
The data files have been tested in Python 3.7 environment.