converting array to image??
Mostrar comentarios más antiguos
I have a array say like 64414 23345 .... . can i save the array as image on my desktop and again when i read back in matlab get 64414 23345...(original array)?? if so could u plz let me know how to do
I tried by displaying the array and saving the image displayed but the values in it are changing when i read back..
Respuestas (2)
Image Analyst
el 4 de Jul. de 2013
0 votos
It already is an image. Any 2D array, or 3D for that matter, can be considered as an image. Why do you think your 2D array is not?
1 comentario
nayana
el 8 de Jul. de 2013
Walter Roberson
el 4 de Jul. de 2013
h = image(uint16(YourArray));
fetched = get(h, 'CData');
%now see how much they differ
max(YourArray(:) - fetched(:))
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!