필터 지우기
필터 지우기

Tooltip for impoly in matlab?

조회 수: 2 (최근 30일)
Sudhanshu Goel
Sudhanshu Goel 2017년 2월 3일
댓글: Sudhanshu Goel 2017년 2월 10일
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

채택된 답변

Walter Roberson
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
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.)
Sudhanshu Goel
Sudhanshu Goel 2017년 2월 10일
Thanks a lot.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by