我想在matlab中有一个带有GUI的程序,在运行程序时,用户可以用鼠标在GUI的轴上绘制任何东西,我想将创建的图像保存在矩阵中。我该怎么做?
问问题
15150 次
3 回答
8
最后我找到了一个很好的代码,并且我已经更改了一些为我定制的部分。通过这种方式,用户可以用鼠标在轴上绘制任何东西:
function userDraw(handles)
%F=figure;
%setptr(F,'eraser'); %a custom cursor just for fun
A=handles.axesUserDraw; % axesUserDraw is tag of my axes
set(A,'buttondownfcn',@start_pencil)
function start_pencil(src,eventdata)
coords=get(src,'currentpoint'); %since this is the axes callback, src=gca
x=coords(1,1,1);
y=coords(1,2,1);
r=line(x, y, 'color', [0 .5 1], 'LineWidth', 2, 'hittest', 'off'); %turning hittset off allows you to draw new lines that start on top of an existing line.
set(gcf,'windowbuttonmotionfcn',{@continue_pencil,r})
set(gcf,'windowbuttonupfcn',@done_pencil)
function continue_pencil(src,eventdata,r)
%Note: src is now the figure handle, not the axes, so we need to use gca.
coords=get(gca,'currentpoint'); %this updates every time i move the mouse
x=coords(1,1,1);
y=coords(1,2,1);
%get the line's existing coordinates and append the new ones.
lastx=get(r,'xdata');
lasty=get(r,'ydata');
newx=[lastx x];
newy=[lasty y];
set(r,'xdata',newx,'ydata',newy);
function done_pencil(src,evendata)
%all this funciton does is turn the motion function off
set(gcf,'windowbuttonmotionfcn','')
set(gcf,'windowbuttonupfcn','')
于 2012-09-24T08:21:55.237 回答
3
该ginput
函数获取图形中鼠标点击的坐标。您可以将它们用作线、多边形等的点。
如果这不符合您的需求,您需要描述您希望用户绘制的确切内容。
对于徒手绘图,这可能会有所帮助:
http://www.mathworks.com/matlabcentral/fileexchange/7347-freehanddraw
于 2012-09-21T18:53:38.557 回答
2
我知道使用鼠标与 matlab 窗口交互的唯一方法是 ginput,但这现在可以让你流畅地绘制任何东西。
有一些方法可以在 matlab 中使用 Java Swing 组件,请查看http://undocumentedmatlab.com/了解更多信息。
编辑:您可能也想检查一下。
http://blogs.mathworks.com/videos/2008/05/27/advanced-matlab-capture-mouse-movement/
于 2012-09-21T18:55:22.430 回答