Hand gesture recognition from image
显示 更早的评论
Hello! I'm working on the hand gestures recognition. I have trained cascades from OpenCV for each hand gesture (such as palm, fist, victory, thumbs up..) and now I'm trying to figure out how to make all these classifiers could detect my five gestures together in Matlab, not separately. For example, I load a picture of a fist or palm, and I get type of gesture: fist or palm.
Sample of code which working with cascade with ONE gesture
detector = vision.CascadeObjectDetector('cascade.xml');
img = imread('gesture.jpg');
bbox = step(detector,img);
detectedImg = insertObjectAnnotation(img,'rectangle',bbox,'palm sign');
figure;
imshow(detectedImg);
1 个评论
deepali chakre
2017-12-22
Try using your webcam feed and use a loop for detection. Can you please share your XML files? I'm trying the thumbs up and victory gestures.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Semantic Segmentation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!