converting matrix into image

1 visualización (últimos 30 días)
marwa jendoubi
marwa jendoubi el 28 de Oct. de 2016
Comentada: marwa jendoubi el 28 de Oct. de 2016
I try to visualize the image but its not possible because of 'double' V= double(imread('circuit.tif')); imshow(V);
  2 comentarios
KSSV
KSSV el 28 de Oct. de 2016
What error you got?
marwa jendoubi
marwa jendoubi el 28 de Oct. de 2016
the figure shown is all white and if I delete 'double' I get the image

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 28 de Oct. de 2016
Try
imshow(V, []);

Más respuestas (1)

Thorsten
Thorsten el 28 de Oct. de 2016
I = im2double(imread('circuit.tif'));
imshow(I)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by