Draw a rectangle on an image in gui with mouse hover
Ältere Kommentare anzeigen
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 Kommentare
Geoff Hayes
am 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
am 11 Jan. 2019
Abdulllah
am 11 Jan. 2019
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Interactive Control and Callbacks finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
