我使用手册中的描述保存和加载 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;
但是,如果我第二次调用该函数,它是否已知?