Need help to mask the image.

1 visualización (últimos 30 días)
Sachal Hussain
Sachal Hussain el 9 de Abr. de 2021
Editada: Walter Roberson el 9 de Abr. de 2021
Hi,
I need help to mask this attached image. I just want the black background to be white and other image remains the same.
Please guide, thank you.

Respuestas (1)

Walter Roberson
Walter Roberson el 9 de Abr. de 2021
Editada: Walter Roberson el 9 de Abr. de 2021
img = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/578172/untitled.jpg');
grimg = rgb2gray(img);
black = grimg < 10;
background = bwareafilt(black, 1);
grimg(background) = 255;
imshow(img); title('original')
imshow(grimg); title('filtered')

Community Treasure Hunt

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

Start Hunting!

Translated by