Tooltip for impoly in matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Walter Roberson
2017년 2월 5일
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
Walter Roberson
2017년 2월 9일
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.)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!