(app designer) Callback for ROIMoved event does not work
12 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
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 个评论
更多回答(1 个)
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!