converting matrix into image

1 Ansicht (letzte 30 Tage)
marwa jendoubi
marwa jendoubi am 28 Okt. 2016
Kommentiert: marwa jendoubi am 28 Okt. 2016
I try to visualize the image but its not possible because of 'double' V= double(imread('circuit.tif')); imshow(V);
  2 Kommentare
KSSV
KSSV am 28 Okt. 2016
What error you got?
marwa jendoubi
marwa jendoubi am 28 Okt. 2016
the figure shown is all white and if I delete 'double' I get the image

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Okt. 2016
Try
imshow(V, []);

Weitere Antworten (1)

Thorsten
Thorsten am 28 Okt. 2016
I = im2double(imread('circuit.tif'));
imshow(I)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by