Tracking two hands with OpenCV

asked 2016-08-13 17:40:14 -0600

Kis gravatar image

Hi!

I need to track two hands that are constantly changing in shape from videos. I have done the basic thresholding. I tried k-means to partition the thresholded pixels into two clusters, and then did contour extraction on each cluster to identify the palm and fingers. But this didn't always work, given that in our video:

  • (1) the two hands can sometimes overlap, and
  • (2) one hand can be invisible while the other is visible

Given these constraints, could anyone suggest an algorithm that can robustly track two hands simultaneously?

Thanks.

edit retag flag offensive close merge delete

Comments

I suggest you to read this work of my collegue, who has been tackling this for his PhD.

StevenPuttemans gravatar imageStevenPuttemans ( 2016-08-14 08:52:21 -0600 )edit
1

Thanks for the reference. It indeed uses a very interesting approach.

Kis gravatar imageKis ( 2016-08-17 16:39:19 -0600 )edit