How to display the object created with function strel?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
L
el 23 de Nov. de 2017
Comentada: Walter Roberson
el 21 de Mayo de 2018
How to display the object created with function strel?
2 comentarios
Respuesta aceptada
Walter Roberson
el 24 de Nov. de 2017
AAA = strel('disk', 5);
AAA.Neighborhood
image(AAA.Neighborhood); colormap(gray(2));
4 comentarios
neel patel
el 21 de Mayo de 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
el 21 de Mayo de 2018
imwrite(uint8(AAA.Neighborhood), gray(2),'NameOfFile.bmp')
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!