Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
I=imread('C:\Users\Ram\Desktop\download.jpg');Iycbcr=rgb2ycbcr(I); I2=Iycbcr; IY=Iycbcr( :,:,1);ICB=Iycbcr( :,:,2);ICR=Iycbcr( :,:,3); skinplace = (80<IY) & (IY<190) & (57<ICB) & (ICB<148) & (120<ICR) & (ICR<180); I1(repmat(skinplace,[1,1,3])) = 255; imshow(Iycbcr) figure,imshow(I2); Idiff=Iycbcr-I2; figure,imshow(Idiff); Irgb=ycbcr2rgb(Iycbcr); Igray=rgb2gray(Irgb); Igray(find(Igray<=50))=0; se=strel('disk',1); Igray=imopen(Igray,se); Igray=imfill(Igray,'holes'); se=strel('disk',6); Igray=imopen(Igray,se); figure,imshow(Igray); >> Ibw=im2bw(Igray); >> figure,imshow(Ibw);
The End.
Neha_18