Emgu CV Hand Gestures Recognition Advanced Tutorial
Loading...
16,093
Loading...
Uploader Comments (badrepent)
see all
All Comments (68)
-
Thank you!
-
is emgu() function implementable in c++..???
-
really great video!! may give me a little explanation about how works the face recognition? THX DUDE!!!
-
Thanks for this video and for sharing your code.
-
@KMKT89 Hey KMKT89, would you mind pointing me in the direction of translating this project to C++. Do I need to re-write all the .cs files or can I use some of the .dlls as libraries and just write my own main file that calls on their functions?
-
I see. Thank you for your help and reply, I'll keep going on.
Loading...
Thank you for this - it really helped me out. One thing though - its not really gesture recognition, because you can't train it to do specific features other than counting fingers. Have you had any luck with Emgu's ML dll classes or Accord's Vision dll?
vapemylungs 7 months ago in playlist openCV
@vapemylungs
Thanks a lot for your valuable suggestions. Recognition in this video consist in recognize the number of fingers with a simple techiniques. ML techniques are certainly more powerful, my idea is only a proof of concept. Both emgu and expecally Accord has got ML classes that can help you in your project...
badrepent 7 months ago
Hello again badrepent, I know that you need to find the defects to get the palm position, I now have the defects, but what do I do next? Can you please briefly tell me on what to do with the defects to get the center of the palm position?
KMKT89 9 months ago
@KMKT89
You can compute center of mass to estimate hand's center using extracted hand contour....
badrepent 9 months ago
@badrepent
But that is assuming that only the hand is detected and not the whole arm. I'm trying to make it so
that using the shallowest depth point found, which is at the wrist, i can derive the palm's position.
Any idea?
KMKT89 9 months ago
@KMKT89
If you are using my code, it's based on skin detection so it extracts both hand and arm, you should
do some clever convexity processing to define hand location and it seems that you are doing it.
You should experiment with some custom ideas I have no reference for your scenario right now.
Good luck!!!
badrepent 9 months ago