繁体   English   中英

将数据从MATLAB GUI传递到另一个函数

[英]Passing data from MATLAB GUI to another function

我有一个matlab GUI (Compare2ImagesGUI),该GUI在另一个GUI (DistanceOrderGUI)中被调用,并且应该基于与用户的某些交互返回一个变量。

这是一个如何调用Compare2ImagesGUI的代码段:

a=1;b=2;
handles.a = a;
handles.b = b;

result = Compare2ImagesGUI('DistanceOrderGUI', handles)

这是打开时的功能:

function Compare2ImagesGUI_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to Compare2ImagesGUI (see VARARGIN)

% Choose default command line output for Compare2ImagesGUI
%handles.output = hObject;
a = varargin{2}.a;
b = varargin{2}.b;
handles.a = a;
handles.b = b;
handles.ima = varargin{2}.ims{a};
handles.imb = varargin{2}.ims{b};
init(hObject,handles);

% UIWAIT makes Compare2ImagesGUI wait for user response (see UIRESUME)
uiwait(hObject);

这是init函数:

function init(hObject,handles)

imshow(handles.ima,'Parent',handles.axes1);
handles.current = handles.a;

% handles.ims=ims; handles.gt=gt; 
% handles.folderN=folderN; handles.name=dirnames{folderN};

% Update handles structure
guidata(hObject, handles);

当用户完成交互时,他按下按钮, GUI应该关闭并将值返回给其调用函数:

% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
figure1_CloseRequestFcn(hObject,handles);

% --- Outputs from this function are returned to the command line.
function varargout = Compare2ImagesGUI_OutputFcn(hObject, eventdata, handles) 
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.current

delete(handles.Compare2ImagesGUI);


% --- Executes when user attempts to close figure1.
function figure1_CloseRequestFcn(hObject, handles)
% hObject    handle to figure1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

if isequal(get(hObject,'waitstatus'),'waiting')
    uiresume(hObject);
else
    delete(hObject);
end

我遵循了有关如何构造在此处此处找到的代码的说明,尽管如此,我还是得到了这个奇怪的错误,并且对于如何处理它一无所知:

Error using hg.uicontrol/get
The name 'waitstatus' is not an accessible property for an instance of
class 'uicontrol'.

Error in Compare2ImagesGUI>figure1_CloseRequestFcn (line 127)
if isequal(get(hObject,'waitstatus'),'waiting')

Error in Compare2ImagesGUI>pushbutton3_Callback (line 118)
figure1_CloseRequestFcn(hObject,handles);

Error in gui_mainfcn (line 96)
        feval(varargin{:});

Error in Compare2ImagesGUI (line 42)
    gui_mainfcn(gui_State, varargin{:});

Error in
@(hObject,eventdata)Compare2ImagesGUI('pushbutton3_Callback',hObject,eventdata,guidata(hObject))


Error using waitfor
Error while evaluating uicontrol Callback

请注意,第127行位于function figure1_CloseRequestFcn(hObject, handles)函数中。 有什么建议么?

通常,不是通过您创建的uicontrol调用CloseRequestFcn ,而是在以下情况下调用:

  • 您可以使用内置的图形控件(例如,顶部的“ X”框或图形菜单)关闭图形
  • close被呼唤你的身材
  • 退出MATLAB

发生的情况是pushbutton3_Callback自己的句柄而不是hObject图形的句柄传递给figure1_CloseRequestFcn 问题在于'waitstatus'属性仅属于一个figure

解决方案是修改pushbutton3_Callback以传递图形手柄,或修改pushbutton3_Callback以仅使用图形手柄。 例如:

% --- Executes when user attempts to close figure1.
function figure1_CloseRequestFcn(hObject, eventdata, handles)
% hObject    handle to figure1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

hFig = ancestor(hObject,'Figure');
if isequal(get(hFig,'waitstatus'),'waiting')
    uiresume(hFig);
else
    delete(hFig);
end

注:我添加和eventdata参数figure1_CloseRequestFcn ,这似乎是从你的代码失踪。 (通常将其定义为@(hObject,eventdata)guitest('figure1_CloseRequestFcn',hObject,eventdata,guidata(hObject)) )。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM