/external/opencv3/apps/annotation/ |
opencv_annotation.cpp | 21 void on_mouse(int, int, int, int, void*); 35 // Stop drawing once a new left click is detected by the on_mouse function 36 void on_mouse(int event, int x, int y, int , void * ) function 86 setMouseCallback(window_name, on_mouse);
|
/external/opencv3/samples/python2/ |
common.py | 85 cv2.setMouseCallback(self.windowname, self.on_mouse) 90 def on_mouse(self, event, x, y, flags, param): member in class:Sketcher
|
/external/opencv3/samples/cpp/ |
grabcut.cpp | 272 static void on_mouse( int event, int x, int y, int flags, void* param ) function 301 setMouseCallback( winName, on_mouse, 0 );
|
points_classifier.cpp | 41 static void on_mouse( int event, int x, int y, int /*flags*/, void* ) function 308 setMouseCallback( "points", on_mouse );
|
/external/opencv3/modules/highgui/src/ |
window_QT.h | 529 CvMouseCallback on_mouse; member in class:DefaultViewPort
|
window_carbon.cpp | 103 CvMouseCallback on_mouse; member in struct:CvWindow 653 window->on_mouse = function; 918 window->on_mouse = 0; 1028 if (window->on_mouse != NULL){ 1043 window->on_mouse (event, lx, ly, flags, window->on_mouse_param);
|
window_gtk.cpp | 532 CvMouseCallback on_mouse; member in struct:CvWindow 1028 window->on_mouse = 0; [all...] |
window_w32.cpp | 164 CvMouseCallback on_mouse; member in struct:CvWindow 809 window->on_mouse = 0; [all...] |
/external/opencv3/modules/python/src2/ |
cv2.cpp | 1140 const char *keywords[] = { "window_name", "on_mouse", "param", NULL }; 1142 PyObject *on_mouse; local 1145 if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|O", (char**)keywords, &name, &on_mouse, ¶m)) 1147 if (!PyCallable_Check(on_mouse)) { 1148 PyErr_SetString(PyExc_TypeError, "on_mouse must be callable"); 1154 ERRWRAP2(setMouseCallback(name, OnMouse, Py_BuildValue("OO", on_mouse, param))); [all...] |