필터 지우기
필터 지우기

I have an error in imshow function

조회 수: 23 (최근 30일)
Jumana Pearl
Jumana Pearl 2016년 7월 21일
댓글: Walter Roberson 2021년 3월 9일
Hi, I have a problem when i use imshow in matlab . i excuted imread in struction correctly but when i type imshow it will give me this error: >> imshow(a) Attempt to call constructor image with incorrect letter case. Error in basicImageDisplay (line 24) hh = image(cdata, ...
Error in imshow (line 266) hh = basicImageDisplay(fig_handle,ax_handle,...
  댓글 수: 8
Walter Roberson
Walter Roberson 2021년 1월 5일
An error in imshow line 235 would most often be caused by not passing in any parameters to imshow .
Image Analyst
Image Analyst 2021년 1월 5일
Demyana, from R2019 on, line 235 of imshow() is a blank line. You can edit it and see:
>> edit imshow.m
What does this say
>> which -all imshow
Please start a new question.

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

채택된 답변

Image Analyst
Image Analyst 2016년 7월 21일
imshow() uses image, and you overrode the built-in image function with your own image function defined in your own custom m-file.

추가 답변 (3개)

Geetha raja
Geetha raja 2018년 8월 24일
Error in images.internal.basicImageDisplay (line 24) hh = image(cdata, ...
Error in imshow (line 316) hh = images.internal.basicImageDisplay(fig_handle,ax_handle,... how to solve this problem?????
  댓글 수: 1
Walter Roberson
Walter Roberson 2018년 8월 24일
Use
which -all image
to check to see where image() is being found. You probably are getting your own image.m or some third party image.m instead of MTLAB's image() function

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


vaibhav suryawanshi
vaibhav suryawanshi 2019년 11월 30일
images.internal.basicImageDisplay(fig_handle,ax_handle,...
any one please suggest this error
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 11월 30일
Please show the complete error message.

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


Sagar Badjate
Sagar Badjate 2021년 3월 9일
Error in mm (line 3)
imshow(J);
  댓글 수: 1
Walter Roberson
Walter Roberson 2021년 3월 9일
What is the complete error message ?

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

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by