how to store image read values using command 'imread'?
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to store image read values using command 'imread'?
0 Commenti
Risposte (1)
Image Analyst
il 1 Ott 2012
Modificato: Image Analyst
il 1 Ott 2012
You don't. You use imwrite(). See the help.
% Create an image
imageArray = randi(255, [256 256]);
% Or read one in from disk
imageArray = imread('moon.tif');
% Store it in a file.
imwrite(imageArray, filename);
0 Commenti
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!