필터 지우기
필터 지우기

(app designer) Callback for ROIMoved event does not work

조회 수: 25 (최근 30일)
Thomas Johansson
Thomas Johansson 2020년 4월 17일
댓글: Dennis Premoli 2023년 5월 29일
Hi,
I have modified the Matlab app 'Image histogram example' with the possibility to draw an ROI and get the histogram of that part of the image. It works when I draws the ROI but when I moves the ROI I got the below error:
Warning: Error occurred while executing the listener callback
for event ROIMoved defined for class images.roi.Rectangle:
Undefined function 'allevents' for input arguments of type
'images.roi.Rectangle'.
> In images.roi.internal/ROI/stopDrag
In images.roi.internal.ROI
I have tried several alternatives from this forum but nothing works.
Below is a sceen shot from the code view with the relevant part visible.

채택된 답변

Tommy
Tommy 2020년 4월 17일
Thomas,
When setting up the listener, use
addlistener(ROI, 'ROIMoved', @app.allevents)
Then, when defining allevents, use
function allevents(app, src, event)
...
end
  댓글 수: 7
Khaleel Alhalaseh
Khaleel Alhalaseh 2021년 4월 15일
up vote for a thorough answer. salute
Dennis Premoli
Dennis Premoli 2023년 5월 29일
THank you very much!! Retainign the (src,evt) is also important indeed.

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

추가 답변 (1개)

Heather Wannarka
Heather Wannarka 2021년 7월 8일
This thread is incredibly helpful! It works beautifully in an app created in App Designer 2021a. I am now trying to implement an identical design in an older GUIDE interface and am getting an error similar to the original poster.
Error using images.roi.Rectangle/addlistener
Event 'addNewPositionCallback' is not defined for class 'images.roi.Rectangle'.
Error in RCSTool>DrawShape_Callback (line 757)
addlistener(H, 'addNewPositionCallback', @app.allevents)
Does GUIDE require a different class setup? I have been digging through forums and can find no better explaination than this one and I don't see any reason why it should not work. Any thoughts would be deeply appreciated.

카테고리

Help CenterFile Exchange에서 Graphics Object Properties에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by