1

we can achieve gestures using kinect, I am thinking to get images through kinect and then apply neural network on it, to get more accuracy. is it good approach or i am thinking in wrong way?

1 Answers1

1

Using neural network to recognize human gesture is a good idea, and some guys have published their result.

Dong Li
  • 520
  • 2
  • 7
  • 18
  • @naveedshah I haven't used kinect, but familiar with neural networks like CNN for image classification. – Dong Li Sep 03 '16 at 03:50
  • how to apply CNN on the stream(video) instead of the image? – naveed shah Sep 05 '16 at 07:44
  • You cannot run CNN on video directly. If you want to build training data set, I suggest you can extract the image from video 10 FPS with the corresponding label(maybe the gesture class). If you try to test your CNN on a video, you must extract a single frame and run CNN on it, then the next frame. – Dong Li Sep 06 '16 at 02:38