Filter löschen
Filter löschen

How to reduce perimeter of Image in Matlab?

1 Ansicht (letzte 30 Tage)
Harry Andrews
Harry Andrews am 3 Sep. 2018
Kommentiert: Harry Andrews am 3 Sep. 2018
Hi,
I want to erode (Reduce the perimeter) of the below image by 7 pixels such that only the image within the red circle is kept.
I thought this could be done with imerode, but this also reduces the central pixels which I do not want!
Thank You :)

Akzeptierte Antwort

Image Analyst
Image Analyst am 3 Sep. 2018
Try this:
se = strel('disk', 7, 0);
binaryImage = grayImage > 0; % Threshold.
mask = imerode(binaryImage, se);
grayImage(~mask) = 0;

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by