Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Face Tracking? #15

Open
fullfanta opened this issue Mar 13, 2015 · 1 comment
Open

Face Tracking? #15

fullfanta opened this issue Mar 13, 2015 · 1 comment

Comments

@fullfanta
Copy link

I tried your program for face tracking.

First, I assumed that one single image is given continuously like a video.
At the first frame, the alignment was successful because it starts with the mean shape.

But the problem happens from the second frame.
After the first frame, current shape is almost close to the ground truth.
The first stage of regressor is trained with the mean shape and augmented data.
Then, the result of regressor contains large displacement from the ground truth.
Therefore, At the second frame, the shape moves largely by first stage of regressor.
As the frame goes, shape diverges smoothly.

Somebody suggests to start with the mean shape at each frame.
But it sometimes fails if face is rotated largely.

Therefore, I think starting with the previous frame's shape is the best way.

Do you have any experience of idea about this problem of face tracking?

@jwyang
Copy link
Owner

jwyang commented Mar 17, 2015

@fullfanta actually, I trained two models, one for face alignment given face region (i.e., rect), and the other one for face tracking given the shape from previous frame. These two models are trained with different initializations. The first one is trained with face regions detected by your face detector, the other one is trained with face regions of bounding box of ground-truth shape. When conducting tracking, I found initialze with mean shape is better than directly using the final shape predicted from previous frame.

Hope this helps you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants