How to detect hand?
이전 댓글 표시
INPUT IMAGE:

MATLAB CODE (also attached):
clear all; close all; clc image=imread('a_ASL3.jpg'); BW=binary_image(image); BW = ~BW; st = regionprops(BW, 'BoundingBox' ); for k = 1 : length(st) thisBB = st(k).BoundingBox; rectangle('Position', [thisBB(1),thisBB(2),thisBB(3),thisBB(4)],... 'EdgeColor','r','LineWidth',2 ) end
OUTPUT IMAGE:

PROBLEM I want bounding box just around hand so that I can crop it and do further operations but I am getting image as output in which there are bounding box around every object.
댓글 수: 1
Poornima Gokhale
2015년 12월 14일
I tried this code for my image.But its not working properly. How to modify?? And i want an enlarged image of individual letter to save that letter. Please help me

채택된 답변
추가 답변 (1개)
Ranjitha
2015년 9월 7일
0 개 추천
How to find the length and width for the given code.?? please do help with this.. Can you please let me know what all changes has to be made for the existing code to find length and width of the hand image.
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

