Markers on UIAxes in App Designer
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello i have issue to put markers on UIAxes in App Designer after i press button, opens new figure and markers puts on blank not the image. Thank you for your time.
imshow(a,'Parent', app.UIAxes);
[y, x] = ind2sub(szref,holeidx(plugismissing0));
plot(x,y,'o','linewidth',3,'markersize',10, 'color', 'B')
[y, x] = ind2sub(szref,holeidx(plugismisplaced0));
plot(x,y,'x','linewidth',3,'markersize',10, 'color', 'R')
0 comentarios
Respuestas (2)
J. Alex Lee
el 10 de En. de 2023
you probably need to issue plot commands specifying "parent" as the app.UIAxes
0 comentarios
Walter Roberson
el 10 de En. de 2023
When you do not tell plot() which axes to display into, then it will call gca() to find the current axes. gca() will not look for axes whose handle visibility is turned off, but by default handle visibility is off for all uiaxes in app designer.
You need to either turn on handle visibility for the target axes and make it the current axes (not recommended), or else you have to pass the target axes to plot() (recommended)
0 comentarios
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!