how to store image read values using command 'imread'?
Ältere Kommentare anzeigen
how to store image read values using command 'imread'?
Antworten (1)
Image Analyst
am 1 Okt. 2012
Bearbeitet: Image Analyst
am 1 Okt. 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);
Kategorien
Mehr zu Convert Image Type finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!