How can I delete part of a binary image?

8 visualizaciones (últimos 30 días)
Timilehin Oyinloye
Timilehin Oyinloye el 25 de Jul. de 2022
Comentada: Timilehin Oyinloye el 25 de Jul. de 2022
Hello,
I have several images with different shape and sizes. I am trying to make a code to delete the wider part (lower region) in each of the images. So far, I have been able to change the original images to a binary image.
The part of the image I want to delete is the area within red box in the second picture (Image2.JPG) I attached, i.e. the part that appears like fingers.
Thank you.

Respuesta aceptada

DGM
DGM el 25 de Jul. de 2022
Editada: DGM el 25 de Jul. de 2022
If all you want to do is put a black region over that part of the image:
myimage(310:end,150:300,:) = 0;
Otherwise, you'll have to describe how the region is to be replaced.
If this is supposed to be automated, you'll have to describe what image features can be relied upon and define the criteria used to locate the region that needs to be replaced.
  4 comentarios
DGM
DGM el 25 de Jul. de 2022
This might be a start:
A = imread('image.jpeg');
A = rgb2gray(A);
sz = size(A);
mk = imbinarize(A);
mk = bwareaopen(mk,100);
mk = imfill(mk,'holes');
mk = imclose(mk,strel('disk',15));
imshow(mk)
w = sum(mk,1); % get width of object (vertical)
w = smooth(w,10); % smooth data
plot(w); hold on
% crop off everything outside the region of interest
% by replacing with NaN
[~,mxidx] = max(w);
w(1:mxidx+20) = NaN;
w(round(sz(2)/2):end) = NaN;
plot(w)
% find location of first local minimum within ROI
[~,mnidx] = findpeaks(-w);
mnidx = mnidx(1);
% use that index and the mask
% to find a box around the bad part
mk = imdilate(mk,strel('disk',15));
mk(:,mnidx:end) = 0;
mk(any(mk,2),any(mk,1)) = 1;
% create output
B = A;
B(mk) = 0;
% show output
figure
imshow(B)
% overlay original and censored copy for comparison
figure
imshow(imfuse(A,B))
Of course, if the narrowest part isn't always in that area, then this won't work. You might be able to use the example as a starting point though.
Timilehin Oyinloye
Timilehin Oyinloye el 25 de Jul. de 2022
Thank you very much.
This is helpful.

Iniciar sesión para comentar.

Más respuestas (1)

NN
NN el 25 de Jul. de 2022
Hi,
As per my understanding, you want to delete some part of an image.
Please find some of the existing solutions to your problem :
  1. https://in.mathworks.com/matlabcentral/answers/293816-how-to-delete-some-part-of-an-image?s_tid=answers_rc1-1_p1_MLT
  2. https://in.mathworks.com/matlabcentral/answers/154845-how-to-delete-selective-part-of-image?s_tid=answers_rc1-2_p2_MLT
Hope this helps. Please let me know if the problem still persists.
Regards,
Narvik

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by