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!