I need help determining if what I'm doing is sufficient. I have extracted the "curvature" from two human faces (essentially the curve that goes from one ear, down the face to the chin, and back up to the other ear). Now I want to compute a curve similarity with another human face.
To try to make this invariant to the possible different curve sizes (since the images these faces are taken from can be taken from varying distances from the person) I've normalized both the X and Y dimensions by subtracting the mean and dividing by the standard deviation (I'm not sure this is correct).
Finally, I'm using Dynamic Time Warping to compare these curves, this is the kind of result I get:
Basically I'm asking whether this approach sounds reasonable.