/face_landmark_dnn

Face Landmark Detector based on Mobilenet V1

Primary LanguagePythonMIT LicenseMIT

facial-landmark-dnn

Facial landmark detection using Convolutional Neural Networks for Mobile Device

[ Data Preprocessing ]

# Example: Load Dataset
X = np.load(PATH + "basic_dataset_img.npz")
y = np.load(PATH + "basic_dataset_pts.npz")
X = X['arr_0']
y = y['arr_0'].reshape(-1, 136)

[ Modeling ]

[ Result ]

[ Converter for Mobile ]

[ Reference ]