フィルターのクリア

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 Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by