How to display the object created with function strel?

8 Ansichten (letzte 30 Tage)
L
L am 23 Nov. 2017
Kommentiert: Walter Roberson am 21 Mai 2018
How to display the object created with function strel?
  2 Kommentare
Adam
Adam am 23 Nov. 2017
Bearbeitet: Adam am 23 Nov. 2017
Display it in what way? Image? Command line? You can apply it to a single dot win an otherwise blank image and you'll see what it looks like.
L
L am 27 Nov. 2017
Display as image.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Nov. 2017
AAA = strel('disk', 5);
AAA.Neighborhood
image(AAA.Neighborhood); colormap(gray(2));
  4 Kommentare
neel patel
neel patel am 21 Mai 2018
for display it is good but how to save that image? mit imsave it is not working. can anyone tell me the answer?
Walter Roberson
Walter Roberson am 21 Mai 2018
imwrite(uint8(AAA.Neighborhood), gray(2),'NameOfFile.bmp')

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by