Draw a rectangle on an image in gui with mouse hover
Afficher commentaires plus anciens
This question has two parts.
First I want to draw a rectangle on an image in gui only when the mouse hovers on the image. Secondly, if the user clicks the image execute some statements. Right now, I can only draw the rectangle on the image in following manner,
axes(handles.axes1);
[r,c,~]=size(Image);
rectangle('Position', [-2,-2,c+4,r+4],'EdgeColor','r');
3 commentaires
Geoff Hayes
le 11 Jan 2019
Imran - do you want to click the mouse button (while the mouse pointer is over the image) and draw the rectangle from that location? What is the relationship between the mouse pointer and the rectangle?
Abdulllah
le 11 Jan 2019
Abdulllah
le 11 Jan 2019
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Graphics Performance dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
