converting matrix into image

조회 수: 1 (최근 30일)
marwa jendoubi
marwa jendoubi 2016년 10월 28일
댓글: marwa jendoubi 2016년 10월 28일
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
marwa jendoubi
marwa jendoubi 2016년 10월 28일
thanks sir, that works

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Thorsten
Thorsten 2016년 10월 28일
I = im2double(imread('circuit.tif'));
imshow(I)
  댓글 수: 1
marwa jendoubi
marwa jendoubi 2016년 10월 28일
thanks for answering me sir

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by