I am newbie with OpenCV and VS C++ 2008
My program displays images from a file video and user can use mouse to choose a part of image to do tracking with Meanshift algorithm.I ran successfully with console application by using
void on_mouse( int event, int x, int y, int flags, void* param )
{
if( !image )
return;
if( image->origin )
y = image->height - y;
if( select_object )
{
selection.x = MIN(x,origin.x);
selection.y = MIN(y,origin.y);
selection.width = selection.x + CV_IABS(x - origin.x);
selection.height = selection.y + CV_IABS(y - origin.y);
selection.x = MAX( selection.x, 0 );
selection.y = MAX( selection.y, 0 );
selection.width = MIN( selection.width, image->width );
selection.height = MIN( selection.height, image->height );
selection.width -= selection.x;
selection.height -= selection.y;
}
switch( event )
{
case CV_EVENT_LBUTTONDOWN:
origin = cvPoint(x,y);
selection = cvRect(x,y,0,0);
select_object = 1;
break;
case CV_EVENT_LBUTTONUP:
select_object = 0;
if( selection.width > 0 && selection.height > 0 )
track_object = -1;
break;
}
}
int meanshift(char *path)
{
int nRetCode = 0;
CvRect search_window;
CvCapture* capture = 0;
CvVideoWriter* pFGAvi = NULL;
// Use to print frame number
CvFont font;
char *myBuff = NULL;
capture = cvCaptureFromFile(path);
if( !capture )
{
fprintf(stderr,"Could not initialize capturing...\n");
return -1;
}
// Create font
int framenumber =0;
cvInitFont(&font, CV_FONT_HERSHEY_SIMPLEX, 0.6, 0.6, 0, 2);
// Record tracking
int fps = (int)cvGetCaptureProperty(capture,CV_CAP_PROP_FPS);
int frameH= (int)cvGetCaptureProperty(capture,CV_CAP_PROP_FRAME_HEIGHT);
int frameW=(int)cvGetCaptureProperty(capture,CV_CAP_PROP_FRAME_WIDTH);
if(pFGAvi==NULL)
{
// pFGAvi=cvCreateVideoWriter(meanshiftfile,CV_FOURCC('x','v','i','d'),fps, cvSize (frameW, frameH));
}
cvNamedWindow( "Histogram", 1 );
cvNamedWindow( "MeanShiftDemo", 1 );
cvSetMouseCallback( "MeanShiftDemo",on_mouse, 0 );
// Do tracking and release objects when finishing
return 0;
}
And now I want to convert it from console application to GUI application. Program will displays images in a file video in PictureBox and then user can use mouse to choose a part of image to do tracking with Meanshift algorithm. Displaying image to PictureBox is finished but remaining problem is get mouse events from PictureBox and do tracking with selected part. Currently, I just know that cvSetMouseCallback() only works with an external window which is created by cvNamedWindow(). How about pictureBox? Is there any way to use cvSetMouseCallback() with a PictureBox object?
Any help would be appreciated and I really hope this problem can be solved soon. Thank you!!