In the Learning OpenCV book, I came to the term callback, and sometimes used with routine as callback routine.
Learning OpenCV
callback
routine
callback routine
What d
They mean that you pass a pointer to a procedure to OpenCV. This will be called back when something happens. This can e.g. seen at cvSetMouseCallback(). The function referenced by the pointer will be called whenever the mouse moves.
OpenCV
called back