finger detection from binary image?

hi, im working real time hand recognition, i obtained hand clearly and i want to obtain fingers from this picture, can anyone help me?

댓글 수: 3

Manjiree Waikar
Manjiree Waikar 2017년 9월 8일
Sir can you please tell me how to find centre and hand extremeties of hand image. I have attached the respective image here. Actually I want to automatically extract the region of vein patterns from the back of the palm. Please help me with the code.
Image Analyst
Image Analyst 2017년 9월 8일
I answered that below.
I = imread('0002.png'); [L,N] = superpixels(I,1000); BW = boundarymask(L); % imshow(imoverlay(I,BW,'cyan'),'InitialMagnification',100)
figure
% Define centroid
Ibw = im2bw(I);
Ibw = imfill(Ibw,'holes');
Ilabel = bwlabel(Ibw);
stat = regionprops(Ilabel,'centroid');
[L,N] = superpixels(I,500)
BW = boundarymask(L);
imshow(imoverlay(I,BW,'cyan'),'InitialMagnification',100); hold on;
for x = 1: numel(stat)
plot(stat(x).Centroid(1),stat(x).Centroid(2),'ro');
end

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2014년 3월 29일

0 개 추천

There are 3 hand segmentation apps on Dirk's File Exchange page that looks like they will help you: http://www.mathworks.com/matlabcentral/fileexchange/index?term=authorid%3A29180

댓글 수: 1

Image Analyst
Image Analyst 2016년 3월 16일
Remove the clutter, like hang a sheet or cyc behind the person.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

질문:

2014년 3월 29일

댓글:

2018년 4월 6일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by