How to display the object created with function strel?
3 ビュー (過去 30 日間)
古いコメントを表示
How to display the object created with function strel?
2 件のコメント
採用された回答
Walter Roberson
2017 年 11 月 24 日
AAA = strel('disk', 5);
AAA.Neighborhood
image(AAA.Neighborhood); colormap(gray(2));
4 件のコメント
neel patel
2018 年 5 月 21 日
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
2018 年 5 月 21 日
imwrite(uint8(AAA.Neighborhood), gray(2),'NameOfFile.bmp')
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!