Freehand drawing in axes
조회 수: 4 (최근 30일)
이전 댓글 표시
Dear All,
I want to draw multiply lines (freehand) in one axes (e.g., paintAxes) which is one of many axes in a GUI.
I tried the solution provided by Doug Schwarz in http://www.mathworks.in/matlabcentral/newsreader/view_thread/30168#75552
The code is:
function sketch(cmd)
if nargin == 0
cmd = 'init';
end
switch cmd
case 'init'
fig = figure('DoubleBuffer','on','back','off');
info.ax = axes('XLim',[0 1],'YLim',[0 1]);
info.drawing = [];
info.x = [];
info.y = [];
set(fig,'UserData',info,...
'WindowButtonDownFcn',[mfilename,' down'])
case 'down'
myname = mfilename;
fig = gcbf;
info = get(fig,'UserData');
curpos = get(info.ax,'CurrentPoint');
info.x = curpos(1,1);
info.y = curpos(1,2);
info.drawing = line(info.x,info.y,'Color','k');
set(fig,'UserData',info,...
'WindowButtonMotionFcn',[myname,' move'],...
'WindowButtonUpFcn',[myname,' up'])
case 'move'
fig = gcbf;
info = get(fig,'UserData');
curpos = get(info.ax,'CurrentPoint');
info.x = [info.x;curpos(1,1)];
info.y = [info.y;curpos(1,2)];
set(info.drawing,'XData',info.x,'YData',info.y)
set(fig,'UserData',info)
case 'up'
fig = gcbf;
set(fig,'WindowButtonMotionFcn','',...
'WindowButtonUpFcn','')
end
I still have few problems which I would be grateful if you can help:
- when I call it opens a new figure, how can I disable it and how I can make it to allow drawing only in my specific axes?
-How can I change the line thickness?
Thanks a lot in advance.
댓글 수: 0
답변 (1개)
Image Analyst
2013년 5월 12일
Try commenting out this line:
fig = figure('DoubleBuffer','on','back','off');
댓글 수: 2
Image Analyst
2013년 5월 13일
편집: Image Analyst
2013년 5월 13일
Try this: http://blogs.mathworks.com/videos/2012/07/03/debugging-in-matlab/ to see where the additional figure pops to life.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!