Ask Your Question
0

Hand detection: convex vs cascade classifier

asked 2013-08-15 00:21:38 -0600

gektor gravatar image

Assuming I need to detect fingers orientation, what is the most accurate way: cascade classifier or convex detection (like in this example)

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-08-15 04:26:08 -0600

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.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2013-08-15 00:21:38 -0600

Seen: 2,069 times

Last updated: Aug 15 '13