write image and display
이전 댓글 표시
I want to write H as an image and display. Please help me.
댓글 수: 1
Adam
2016년 9월 29일
What is H? The letter H or some matrix or what?
채택된 답변
추가 답변 (1개)
Image Analyst
2016년 9월 29일
Or, if you don't want some weird colormap applied by default (like imagesc applies for some reason):
imshow(H, []);
To write H to disk, you can use imwrite() if it's an integer array and you want a standard image format, or use save() if you want to save a floating point image. If you want to save a screenshot of your entire figure/GUI, use export_fig.
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!