Face Recognition Data Files for dlib

Citation Author(s):
Shaolin
Liao
Illinois Institute of Technology
Submitted by:
Shaolin Liao
Last updated:
Tue, 10/06/2020 - 11:07
DOI:
10.21227/r9p0-r710
Data Format:
License:
709 Views
Categories:
0
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]

Comments

The data files have been tested in Python 3.7 environment.

Submitted by Shaolin Liao on Wed, 09/30/2020 - 23:25