How to erase black letters in an image

2 views (last 30 days)
I have an image like this:
Is it possible to erase these letters conserving the background?

Answers (1)

Akira Agata
Akira Agata on 8 Feb 2024
How about the following?
I = imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1611496/image.jpeg');
Igray = rgb2gray(I);
BW = Igray < 10;
se = strel('disk', 10);
BW = imdilate(BW, se);
I2 = inpaintCoherent(I, BW);
imshow(I2)

Community Treasure Hunt

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

Start Hunting!