Filter löschen
Filter löschen

write image and display

3 Ansichten (letzte 30 Tage)
PK
PK am 29 Sep. 2016
Kommentiert: PK am 29 Sep. 2016
I want to write H as an image and display. Please help me.
  1 Kommentar
Adam
Adam am 29 Sep. 2016
What is H? The letter H or some matrix or what?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Massimo Zanetti
Massimo Zanetti am 29 Sep. 2016
Bearbeitet: Massimo Zanetti am 29 Sep. 2016
Do this.
H=zeros(100);
H(:,10:20)=1;
H(:,80:90)=1;
H(46:55,10:90)=1;
imagesc(H); axis image;
It should be the right H.

Weitere Antworten (1)

Image Analyst
Image Analyst am 29 Sep. 2016
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.

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by