How can I color the specific region of the image?

4 次查看(过去 30 天)
Hi!
I want to change the color of specific region in an image. The background color should be different from the eyes color of the image shown below. Thanks
img = imread('C:\Users\Junaid Khan\Desktop\jun.png');
bn=im2bw(img);
imshow(bn)
bn=bwareaopen(bn,100);
imshow(bn)
[L,n]=bwlabel(bn);
imshow(label2rgb(L));
prop=regionprops(L);
The above is the input image and while I run this code the output is like this.
I want to change the eyes and mouth color and also the background color should not be same.
Thanks
  1 个评论
DGM
DGM 2024-6-13
You've said that you want regions to be different things, but you haven't really said what you actually want them to be. It's fairly clear that using label2rgb() is inappropriate for whatever you're trying to do, but it's not clear whether bwlabel(), etc are either.
I've posted a number of demos involving masked image adjustment, blending, and composition. For anything more tailored, you're going to have to be specific.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by