Add a callback function for impoint object

I have a GUI where the user uses impoint to add points to the axes. Whenever an impoint object is created, I want to add a callback function that is called whenever the point is dragged. I also want several inputs to be passed to the callback function. How do I do this?
I think this uses iptaddcallback(h,callback,func_handle), but I can't figure out how to pass inputs to the function handle, or what to use for the 'callback' property. New to Matlab here :P Any help would be great, thanks!

Antworten (2)

Sean de Wolski
Sean de Wolski am 1 Aug. 2012
Bearbeitet: Sean de Wolski am 8 Aug. 2012

0 Stimmen

Sounds like you will want to use its 'addNewPositionCallback' function.
More
I think you can pass it the typical way using a cell array that contains the function handle and additional inputs. E.g:
h = figure;
f = @(src,evt,x) disp(x);
x = 'pi';
iptaddcallback(h, 'WindowButtonMotionFcn', {f,x});

4 Kommentare

JM
JM am 1 Aug. 2012
I couldn't figure out how to pass additional inputs to the callback function. 'addNewPositionCallback' seems to only allow functions with one input (which is the position). I'm probably just confused.
Image Analyst
Image Analyst am 1 Aug. 2012
What additional variables do you need access to?
JM
JM am 7 Aug. 2012
I need to pass in the GUI handles structure so that I can make changes to it.
Sean de Wolski
Sean de Wolski am 8 Aug. 2012
See More

Melden Sie sich an, um zu kommentieren.

Image Analyst
Image Analyst am 1 Aug. 2012

0 Stimmen

What is the use case for this? I don't understand why every point has to have its own individual callback? Are you sure you don't just want the user to click several points and then you run some function when they're done clicking on points?

2 Kommentare

JM
JM am 1 Aug. 2012
The GUI has a video in the background. The points are marking moving objects in the video. The user places points on objects, advances to a later frame, and drags the points to wherever the objects have moved to. I want to save all the previous positions of the points in a struct array.
It's fine if all the points call the same callback function... it's not supposed to be complicated...
Image Analyst
Image Analyst am 1 Aug. 2012
What would you do in the callback? Anyway, can't you just call ginput and then put whatever code it is that you want to run right after ginput returns with the coordinate? That's how I would approach it because it seems a lot easier.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Hilfe-Center und File Exchange

Gefragt:

JM
am 1 Aug. 2012

Community Treasure Hunt

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

Start Hunting!

Translated by