Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Error in matlab 13 but not in matlab 10 with respect to imshow
1 回表示 (過去 30 日間)
古いコメントを表示
I am getting error as I shown please help me !!
2 件のコメント
Geoff Hayes
2015 年 2 月 1 日
Anoop - what is I and what is N? Presumably the former is the image that you want to show, but what is the latter?
The error message is telling you that the inputs that you are using for the imshow function are no longer valid which may make sense given that there could have been some changes (to this function) from R2010a to R2013a.
Image Analyst
2015 年 2 月 1 日
Release R2014b is version 8.4. What versions are you talking about with MATLAB 10 and 13? Give release numbers with the years in them.
回答 (1 件)
Jan
2015 年 2 月 2 日
The error message mentions this as failing command:
imshow('imageupload.jpg', handles.axes1);
So I guess this might work:
imshow('imageupload.jpg', 'Parent', handles.axes1);
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!