Рисование мышью на GUI в matlab

Я хочу иметь программу в matlab с GUI, при запуске программы пользователь может рисовать что-либо с помощью мыши по осям в GUI, и я хочу сохранить созданное изображение в матрице. как я могу это сделать?

3 ответов


наконец, я нашел хороший код, и я изменил некоторые части для настройки для меня. таким образом, пользователь может рисовать что-либо в осях с помощью мыши :

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','')

на ginput функция получает координаты moueclicks внутри фигуры. Вы можете использовать их как точки линии, полигона и т. д.

Если это не соответствует вашим потребностям, вам нужно описать, что именно вы ожидаете от пользователя.

для рисования от руки это может быть полезно:

http://www.mathworks.com/matlabcentral/fileexchange/7347-freehanddraw


единственный способ взаимодействия с окнами matlab с помощью мыши-ginput, но теперь это позволит вам рисовать что-либо с текучестью.

есть способы использовать компоненты Java Swing в MATLAB check http://undocumentedmatlab.com/ для получения дополнительной информации.

EDIT: вы также можете проверить это.

http://blogs.mathworks.com/videos/2008/05/27/advanced-matlab-capture-mouse-movement/