-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rectify faceness measure (addresses #56)
This was previously incorrectly calculated. The results for this are looking much more promising now. The method of calculation is more in-line with what was originally proposed: > As for your question about adapting the Viola-Jones face detector to return a measure of face-likeness - I think one simple thing you could use is the number of features computed before terminating from the cascade. Face patches always make it to the end of the cascade, i.e. all Haar-like features are computed. Non-faces usually result in early termination from the cascade, and the earlier, the less face-like the patch is (roughly speaking). This certainly would not be a perfect measure, but I'm confident that there is a positive correlation between the total number of features computed in the cascade and the "face-likeness".
- Loading branch information
1 parent
7e2475c
commit 64e686f
Showing
2 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters