How can I color the specific region of the image?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
DGM
il 13 Giu 2024
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.
Risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!