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 日

0 投票

Try
imshow(V, []);

1 件のコメント

marwa jendoubi
marwa jendoubi 2016 年 10 月 28 日
thanks sir, that works

サインインしてコメントする。

その他の回答 (1 件)

Thorsten
Thorsten 2016 年 10 月 28 日

1 投票

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

1 件のコメント

marwa jendoubi
marwa jendoubi 2016 年 10 月 28 日
thanks for answering me sir

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by