how to store image read values using command 'imread'?
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to store image read values using command 'imread'?
0 comentarios
Respuestas (1)
Image Analyst
el 1 de Oct. de 2012
Editada: Image Analyst
el 1 de Oct. de 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 comentarios
Ver también
Categorías
Más información sobre Convert Image Type en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!