converting matrix into image

1 view (last 30 days)
I try to visualize the image but its not possible because of 'double' V= double(imread('circuit.tif')); imshow(V);
  2 Comments
KSSV
KSSV on 28 Oct 2016
What error you got?
marwa jendoubi
marwa jendoubi on 28 Oct 2016
the figure shown is all white and if I delete 'double' I get the image

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 28 Oct 2016
Try
imshow(V, []);

More Answers (1)

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

Categories

Find more on Statistics and Machine Learning Toolbox 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!