Skip to content

Instantly share code, notes, and snippets.

@jjtovarl
jjtovarl / mouse.cpp
Last active August 29, 2015 14:14 — forked from devcarmelo/mouse.cpp
#include <opencv2\opencv.hpp>
using namespace cv;
using namespace std;
static void onMouse( int event, int x, int y, int, void* )
{
string msg = "mouse - movido: X = " + to_string(x) + " Y = " + to_string(y);
Mat img(200, 650, CV_8UC3);