how to store image read values using command 'imread'?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to store image read values using command 'imread'?
0 commentaires
Réponses (1)
Image Analyst
le 1 Oct 2012
Modifié(e) : Image Analyst
le 1 Oct 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 commentaires
Voir également
Catégories
En savoir plus sur Convert Image Type dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!