Clear Filters
Clear Filters

Need help to mask the image.

1 view (last 30 days)
Sachal Hussain
Sachal Hussain on 9 Apr 2021
Edited: Walter Roberson on 9 Apr 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.

Answers (1)

Walter Roberson
Walter Roberson on 9 Apr 2021
Edited: Walter Roberson on 9 Apr 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')

Categories

Find more on Author Block Masks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!