Call back routine

前端 未结 6 584
野的像风
野的像风 2021-02-01 10:14

In the Learning OpenCV book, I came to the term callback, and sometimes used with routine as callback routine.

What d

6条回答
  •  春和景丽
    2021-02-01 11:07

    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.

提交回复
热议问题