请教一下GUI的一个重绘问题
我在一个figure里面,用imread载入一个图像,然后用rbbox选择了一个区域用进行处理,但这时如果重选,原来选择的区域还是给框着,有没有什么办法让rbbox重选时,取消原来选择的框,只显示原来的图像。<BR>下面是部分代码<BR>k = waitforbuttonpress;<BR>point1 = get(gca,'CurrentPoint'); % button down detected<BR>finalRect = rbbox; % return figure units<BR>point2 = get(gca,'CurrentPoint'); % button up detected<BR>point1 = point1(1,1:2); % extract x and y<BR>point2 = point2(1,1:2);<BR>p1 = min(point1,point2); % calculate locations<BR>offset = abs(point1-point2); % and dimensions<BR>x = ;<BR>y = ;<BR>hold on<BR>axis manual<BR>plot(x,y) % redraw in dataspace units<BR><BR>-----------------------<BR>谢谢各位高手不吝指教回复:(aneye)请教一下GUI的一个重绘问题
没太懂你的意思,你给的这部分代码也不能运行
页:
[1]