Filter löschen
Filter löschen

Tooltip for impoly in matlab?

2 Ansichten (letzte 30 Tage)
Sudhanshu Goel
Sudhanshu Goel am 3 Feb. 2017
Kommentiert: Sudhanshu Goel am 10 Feb. 2017
I am creating a ROI (using impoly,imellipse etc.) on an image. What I need is to make a tooltip for this ROI so that every time the cursor is in the area enclosed by ROI, I can display certain information (No. of pixels enclosed in ROI, Area etc.) related to it on the screen. Thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 5 Feb. 2017
Unfortunately imroi do not have tooltips . uicontrol and uitoggletool and uipushtool have tooltipstring properties, but not much else.
You can build your own tool with WindowButtonMotionFcn callbacks, or you can use datacursormode with a custom UpdateFcn . You would have to check to see which imroi you were inside (they are boundaries, not implicitly "filled", so detecting that you are "over" one of them will not work.) Caution: imroi can overlap.
  3 Kommentare
Walter Roberson
Walter Roberson am 9 Feb. 2017
Fetch the current point. Adjust it to be axes-relative if necessary (if you fetched the figure CurrentPoint then it will be figure relative; the axes CurrentPoint will be axes relative.)
Loop through all of the impoly accessing their position with getPosition(). Then use inpolygon() to see if the current point is in the polygon.
(If you know that you have not changed the ROIs since you last did this, you could save a copy of the impoly positions somewhere to save having to fetch them again.)
Sudhanshu Goel
Sudhanshu Goel am 10 Feb. 2017
Thanks a lot.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by