converting matrix into image

2 次查看(过去 30 天)
I try to visualize the image but its not possible because of 'double' V= double(imread('circuit.tif')); imshow(V);
  2 个评论
KSSV
KSSV 2016-10-28
What error you got?
marwa jendoubi
marwa jendoubi 2016-10-28
the figure shown is all white and if I delete 'double' I get the image

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2016-10-28
Try
imshow(V, []);

更多回答(1 个)

Thorsten
Thorsten 2016-10-28
I = im2double(imread('circuit.tif'));
imshow(I)

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by