簡體   English   中英

通過更新功能在 Matlab GUI 上繪制圖像和點

[英]Plotting image and points on Matlab GUI via update function

原諒我的菜鳥,但這是我的第一篇文章。

我在 matlab 中生成了這個 gui,我想在更新函數的一個軸上繪制一個圖像。

我知道在 Matlab 中你可以做一些類似的事情

圖像(img)保持繪圖(x1,z1)保持關閉

但是如何用 gui 做到這一點呢?

這是更新功能的一部分

%get a handle to the GUI's 'current state' window
deflectionx = findobj('Tag','deflectionx_display');
deflectiony = findobj('Tag','deflectiony_display');
depth = findobj('Tag','depth_display');
Graph = findobj('Tag','Graphical_display');
UltraS = findobj('Tag','UltraS_image');
%update the gui
set(deflectionx,'String',x_def);
set(deflectiony,'String',y_def);
set(depth,'String',insert_depth);


%% above works fine. below does not

%i want this to plot those points on top of the image in the large graph panel of the gui
plot(Graph,img1)
hold on
plot(Graph,x1,z1);
hold off

%this should plot the second image on the UltraS panel
plot(UltraS,img2)

請提前致謝!

所以想我必須在gui的打開函數中將GUI的句柄寫入工作區

% --- Executes just before VR_gui is made visible.
function VR_gui_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 VR_gui (see VARARGIN)

% Choose default command line output for VR_gui
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

%setting axis
needle_plot = handles.Graphical_display;
US_plot = handles.US_image;

%write handle to workspace
assignin ('base','needle_plot',needle_plot);
assignin ('base','US_plot',US_plot);

然后從更新函數中讀取工作區變量

needle_plot = evalin('base','needle_plot');
US_plot = evalin('base','US_plot');

axes(US_plot);
image(img2);

axes(needle_plot);
plot(x1,z1,'r--o');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM