How to substract hand only from the input rgb images?

I want to remove the background by white and only want to keep the hand palm. how to do that ? The rgb image has been attached.

Réponses (2)

Image Analyst
Image Analyst le 13 Déc 2020

2 votes

Try using a uniform background rather than a cluttered one if you can. It will make it a lot simpler.
You could try color segmentation to extract just skin and I attach a demo for that.

4 commentaires

How can I make the background uniform?
Perhaps the best way would be to hang a black velvet drape behind the person. Black velvet is one of the darkest things that you can economically use for a background - much darker than a black posterboard.
Zara Khan
Zara Khan le 14 Déc 2020
Modifié(e) : Zara Khan le 14 Déc 2020
I am using a standard dataset which is publicly availble . is this possible to ask them to do so ???
I don't know. You could try. You could also try the foreground detector in the Computer Vision Toolbox. Otherwise give my skin color detector a try.

Connectez-vous pour commenter.

Matt J
Matt J le 12 Déc 2020

1 vote

You can use imfreehand() or Freehand() to draw the boundary of the palm interactively and then mask out everything in the background.

4 commentaires

Any demo please ?
Matt J
Matt J le 13 Déc 2020
Modifié(e) : Matt J le 13 Déc 2020
A=imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/458405/111.png');
load(websave('Mask','https://www.mathworks.com/matlabcentral/answers/uploaded_files/459155/Mask.mat'));
imshow(uint8(double(A).*msk));
what about this mask.mat?
Matt J
Matt J le 13 Déc 2020
Yes what about it?

Connectez-vous pour commenter.

Question posée :

le 12 Déc 2020

Commenté :

le 14 Déc 2020

Community Treasure Hunt

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

Start Hunting!

Translated by