Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
HOW TO IMPORT IMAGE TO MY WORK SPACE AS MATRIX AFTER I SAVED IT.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
hi wish u can help me. i saved a 3d image to my current folder using the expression hgsave(gcf, 'Image3D.fig', '-v7.3'); i wish to import the image again to my work space as M*N*O MATRIX.i tryied import to work space but i got 5 variables named children,handle,special,type,properties.i like to impoort it as 3D matrix,can u help me?
0 Kommentare
Antworten (2)
Image Analyst
am 28 Jan. 2012
What do you want to save, the data that made up the plot, or the plot itself?
See the FAQ if you want to save your figure to a standard format image file or PDF: http://matlab.wikia.com/wiki/FAQ#How_do_I_save_my_figure.2C_axes.2C_or_image.3F_I.27m_having_trouble_with_the_built_in_MATLAB_functions.
If you want to save the data that you plotted or displayed, then you'll have to save the original data into a mat file with the save() function so that you can recall it later with load().
0 Kommentare
zawaiter
am 28 Jan. 2012
1 Kommentar
Image Analyst
am 28 Jan. 2012
Did you read the last sentence of my answer? You use save() to save out your variable, then use load() to read it back in.
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!