0

I have been working on the problem of recognizing faces from given caricatures using the IIIT-CFW dataset

So far, I have tried using Python's dlib library for detecting landmark points from the cartoon faces. However, it doesn't seem to work well on faces other than real human ones.

Is there any alternative for the same? Any suggestions regarding face alignment and landmark detection would be appreciated.

Saurav--
  • 1,530
  • 2
  • 15
  • 33

1 Answers1

0

I would train a face landmarking model using dlib's tool on that dataset. Dlib comes with example programs showing you how to train new models (e.g. http://dlib.net/train_shape_predictor.py.html)

Davis King
  • 4,731
  • 1
  • 25
  • 26