Delegate MouseCallback
Represents the method that will handle mouse events of a named window.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public delegate void MouseCallback(MouseEvent evt, int x, int y, MouseEventFlags flags);
Parameters
| Type | Name | Description |
|---|---|---|
| MouseEvent | evt | The mouse event category. |
| Int32 | x | The x-coordinate of the mouse during the generating mouse event. |
| Int32 | y | The y-coordinate of the mouse during the generating mouse event. |
| MouseEventFlags | flags | The mouse event modifier flags. |