image callback in app designer
7 次查看(过去 30 天)
显示 更早的评论
I have an app with a UIAxes which contains an image with the returned image object im i.e.im=image(UIAxesObject, array). I create a buttondownfcn callback using
im.ButtonDownFcn = @FCN. However, if I create the function FCN(app, event) inside the private or public function area of the app designer I get an error. The only way I seem to be able to get the callback to work is to put function FCN in a separate m. file. Is there another way of creating callback functions in app designer?
2 个评论
回答(1 个)
Guillaume
2019-6-25
I suspect you've defined the callback incorrectly. Typically the code would be something likle
classdef myapp < matlab.apps.AppBase
% Properties that correspond to app components
properties (Access = public)
UIFigure matlab.ui.Figure
UIAxes matlab.ui.control.UIAxes
%... other controls. You can't edit this directly
end
%your own properties
properties (Access = private)
myimage; %property to hold the image
end
%...
methods (Access = private)
function ImageButtonDownCallback(app, source, eventargs)
%... the callback code
end
%The function that creates the image and enable the callback
function something(app)
app.myimage = imshow(someimage, 'Parent', app.UIAxes); %image creation
app.myimage.ButtonDownFcn = @app.ImageButtonDownCallback; %create callback. IMPORTANT: You must use app.****
end
end
end
2 个评论
Guillaume
2019-6-25
Indeed, you have:
- the image function
- the image type, returned by image, imshow, imagesc and probably other functions. The full name of that type is actually matlab.graphics.primitive.Image. It's not really well documented. The only doc page is its property page.
- the app designer image control whose full name is matlab.ui.control.Image. Again, not very well documented. It has a different set of properties and callbacks from the previous image type.
另请参阅
类别
在 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!