Draw a rectangle on an image in gui with mouse hover
Show older comments
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 Comments
Geoff Hayes
on 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
on 11 Jan 2019
Abdulllah
on 11 Jan 2019
Accepted Answer
More Answers (0)
Categories
Find more on Graphics Performance in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!