HomeSort by relevance Sort by last modified time
    Searched refs:on_mouse (Results 1 - 11 of 11) sorted by null

  /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/modules/highgui/include/opencv2/highgui/
highgui_c.h 202 CVAPI(void) cvSetMouseCallback( const char* window_name, CvMouseCallback on_mouse,
  /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/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/modules/highgui/src/
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...]
window_QT.cpp 674 CV_IMPL void cvSetMouseCallback(const char* window_name, CvMouseCallback on_mouse, void* param)
681 w->setMouseCallBack(on_mouse, param);
    [all...]
window_QT.h 529 CvMouseCallback on_mouse; member in class:DefaultViewPort
  /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, &param))
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...]

Completed in 321 milliseconds