converting matrix into image

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

2 Comments

What error you got?
the figure shown is all white and if I delete 'double' I get the image

Sign in to comment.

 Accepted Answer

More Answers (1)

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

Categories

Find more on Convert Image Type in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!