我保存和加載GUI數據如使用存儲失敗
function readImage(filename, hObject, handles)
handles.image.data = imageRGBNoEdge;
guidata(hObject,handles);
和
function createHistogram(handles)
imageRGB = handles.image.data;
它們都其它
readImage(imageFile,hObject,handles);
createHistogram(handles);
後直接調用的手冊中所描述然而在他第二個功能handles.image是未知的。
??? Reference to non-existent field 'image'.
Error in ==> ui_histogram>createHistogram at 252
imageRGB = handles.image.data;
但是如果我第二次調用函數,它是已知的嗎?
我剛剛寫下相同的答案。我可以證實這是有效的。 – 2012-07-31 12:30:28