face_landmark_dnn
face_landmark_dnn copied to clipboard
Face Landmark Detector based on Mobilenet V1
hello author, which dataset did you use for generating augmentation data. i have ibug images and pts files, the code gives error. what format was your dataset? thank you
Hi, First, i would like to thank you for creating such a nice project which helps me lot for further research. I am training a model for my custom input...
Do you have a demo of model by any chance? I was having trouble getting the code to run. `OpenCV: Couldn't read video stream from file "samples/IU.avi" Traceback (most recent...
HI, Run the code, thanks for your share, the result on the test-dataset is good, but when i run the same model with the real-image i found from internet, no...
i think box_image = cv2.resize(box_image, (output_size, output_size)) landmarks = (landmarks - (x1 - p_x, y1 - p_y)) / (new_size, new_size) should change into box_image = cv2.resize(box_image, (new_size, new_size)) landmarks =...