Hand detection: convex vs cascade classifier
Assuming I need to detect fingers orientation, what is the most accurate way: cascade classifier or convex detection (like in this example)
Assuming I need to detect fingers orientation, what is the most accurate way: cascade classifier or convex detection (like in this example)
Cascade classification will always return you a bounding box result, which matches to the windows that has found a model match. The convex detection actually looks for edge points like the fingertips and such, giving you the possibility to calculate finger orientations.
So a first step could be a cascade classifier to detect the initial hand, then lay over a covex hull or a snake like approach, then calculate features and orientations. Keeping track of the hand can be done by following the palm hand with a tracker mechanism.
Asked: 2013-08-15 00:21:38 -0600
Seen: 2,096 times
Last updated: Aug 15 '13
Recognising a Hand using an Image Patch - Advice
Extract palm from a mask of the hand
haar classifier detection vs feature detection,extraction and matching
Fish detection. Is haartraining a good approach ?
How to reduce false positives for face detection
Performance evaluation for detection
How to control the precision vs. recall rate of a classifier?
How can I debug into function like "cvCreateTreeCascadeClassifier "?