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 comentarios

Manjiree Waikar
Manjiree Waikar el 8 de Sept. de 2017
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 el 8 de Sept. de 2017
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

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 29 de Mzo. de 2014

0 votos

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 comentario

Image Analyst
Image Analyst el 16 de Mzo. de 2016
Remove the clutter, like hang a sheet or cyc behind the person.

Iniciar sesión para comentar.

Categorías

Preguntada:

el 29 de Mzo. de 2014

Comentada:

el 6 de Abr. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by