I try to visualize the image but its not possible because of 'double' V= double(imread('circuit.tif')); imshow(V);

2 commentaires

KSSV
KSSV le 28 Oct 2016
What error you got?
marwa jendoubi
marwa jendoubi le 28 Oct 2016
the figure shown is all white and if I delete 'double' I get the image

Connectez-vous pour commenter.

 Réponse acceptée

Image Analyst
Image Analyst le 28 Oct 2016

0 votes

Try
imshow(V, []);

Plus de réponses (1)

Thorsten
Thorsten le 28 Oct 2016

1 vote

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

Catégories

En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by