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

0 Stimmen

Try
imshow(V, []);

Weitere Antworten (1)

Thorsten
Thorsten am 28 Okt. 2016

1 Stimme

I = im2double(imread('circuit.tif'));
imshow(I)

Kategorien

Mehr zu Convert Image Type finden Sie in Hilfe-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