Interactive rectangle on UIAxes for user to choose a region
7 views (last 30 days)
Show older comments
Biraj Khanal
on 27 May 2022
Commented: Walter Roberson
on 10 Jun 2022
I have a dataset with scattered points that I plot on a UIAxes. The idea is to let the user draw a rectangle over the UI Axes only ( not the whole figure) and select a region so that it can be processed further.
plot(app.UIAxes,app.data(1,:),app.data(2,:),'k*');
disableDefaultInteractivity(app.UIAxes);
f = app.UIFigure;
f.Units = 'normalized';
waitforbuttonpress
pos = rbbox;
annotation('rectangle',pos,'Color','r');
The code above is what I tried. The first problem that i see is that waitforbuttonpress opens a new figure and does not operate on the app figure or the axes. What should be the way to get this working?
0 Comments
Accepted Answer
Walter Roberson
on 27 May 2022
Edited: Walter Roberson
on 30 May 2022
https://www.mathworks.com/help/images/ref/drawrectangle.html and make sure to pass in the uiaxes
6 Comments
Walter Roberson
on 10 Jun 2022
I just successfully tested this code:
fig.WindowButtonDownFcn = @(src,event)uiresume(src);
uiwait(fig);
out = uirbbox(fig);
disp(out)
Where uirbbox is a modified version of Mathwork's rrbox that expects a uifigure as the first parameter.
function finalRect = uirbbox(f, initialRectangle, anchorPoint, step)
and
arguments
f (1, 1) matlab.ui.Figure
and
for the chain of if nargin == add 1 to each of the counts, so like
if nargin == 1
initRect = [];
fixedPoint = [];
stepSize = [];
Then comment out
f = gcf;
With f now being a parameter that is a uifigure, and with the gcf commented out, and with the argument count incremented by 1 as appropriate... then it works.
... It does, however, take remarkably long to activate.
More Answers (0)
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!