我在MATLAB的GUI的开启函数中有一个for
循环,我正在尝试使用回调按钮来打破循环。我是MATLAB的新手。这是我的代码:
%In the opening function of the GUI
handles.stop_now = 0;
for i=1:inf
if handles.stop_now==1
break;
end
end
% Executes on button press
function pushbutton_Callback(hObject, eventdata, handles)
% hObject handle to end_segmenting_button (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.stop_now=1;
guidata(hObject, handles);
出于某种原因,尽管使用句柄定义变量,但按下按钮时循环不会中断。有谁知道发生了什么?感谢。
答案 0 :(得分:8)
您遇到的问题是传递给handles
的{{3}}的值的结构固定在调用open函数时的值。您永远不会检索由pushbutton_Callback
更新的新结构。您可以通过在循环中调用opening function来检索新结构。以下是我建议您尝试编写循环的方法:
handles.stop_now = 0; %# Create stop_now in the handles structure
guidata(hObject,handles); %# Update the GUI data
while ~(handles.stop_now)
drawnow; %# Give the button callback a chance to interrupt the opening function
handles = guidata(hObject); %# Get the newest GUI data
end
根据评论中有关您尝试使用GUI完成的内容的其他说明,我认为可能有更好的方法来设计它。用户不必连续循环以重复输入ROI,然后按下按钮停止,您可以取消循环和停止按钮并在GUI中添加“添加ROI”按钮。这样,用户可以在想要添加另一个ROI时按下按钮。您可以先使用以下初始化替换open函数中的for循环:
handles.nROIs = 0; %# Current number of ROIs
handles.H = {}; %# ROI handles
handles.P = {}; %# ROI masks
guidata(hObject,handles); %# Update the GUI data
然后您可以使用以下内容替换按钮的回调:
function pushbutton_Callback(hObject,eventdata,handles)
%# Callback for "Add new ROI" button
nROIs = handles.nROIs+1; %# Increment the number of ROIs
hROI = imfreehand; %# Add a new free-hand ROI
position = wait(hROI); %# Wait until the user is done with the ROI
handles.nROIs = nROIs; %# Update the number of ROIs
handles.H{nROIs} = hROI; %# Save the ROI handle
handles.P{nROIs} = hROI.createMask; %# Save the ROI mask
guidata(hObject,handles); %# Update the GUI data
end
答案 1 :(得分:4)
我在这里看到两个潜在的问题。
首先:变量handles
不是引用,在控制流退出handles.stop_now=1;
后,设置pushbutton_Callback
将“丢失”。使用guidata或other approaches存储和检索数据。
Second problem:使用函数drawnow()。有关详细说明,请参阅this article of Yair Altman。
总结:MATLAB图形是Java Swing和IO操作(如按下按钮)发生在特殊线程 - 事件调度线程(EDT)上。调用drawnow();刷新事件队列并更新图窗口。