1.释放ROI。cvResetImageROI(src)。
2.一个在图片中画矩形或者圆形。
#include <cv.h>
#include <highgui.h>
void my_mouse_callback(
int event, int x, int y, int flags, void* param
);
int Cx,Cy;
double radius=0;
CvRect box;
bool drawing_box = false;
int thick=1;
int shap=0;
void draw_box( IplImage* img, CvRect rect ) {
cvRectangle (
img,
cvPoint(box.x,box.y),
cvPoint(box.x+box.width,box.y+box.height),
cvScalar(0xff,0xff,0x00),/* red */
thick
);
}
void draw_circle(IplImage* img){
cvCircle(
img,
cvPoint(Cx,Cy),
radius,
cvScalar(0xff,0xff,0x00),
thick,
8,
4
);
}
void draw_shaps(IplImage* img){
switch(shap){
case 0:{
draw_box(img,box);
break;
}
case 1:{
draw_circle(img);
break;
}
}
};
int main( int argc, char* argv[] ) {
box = cvRect(-1,-1,0,0);
IplImage* image = cvCreateImage(
cvSize(500,500),
IPL_DEPTH_8U,
3
);
cvZero( image );
IplImage* temp = cvCloneImage( image );
cvNamedWindow( "Box Example" );
cvCreateTrackbar(
"change thick",
"Box Example",
&thick,
10,
NULL
);
cvCreateTrackbar(
"change shap",
"Box Example",
&shap,
10,
NULL
);
cvSetMouseCallback(
"Box Example",
my_mouse_callback,
(void*) image
);
while( 1 ) {
cvCopyImage( image, temp );
if( drawing_box ) draw_shaps( temp);
cvShowImage( "Box Example", temp );
if( cvWaitKey( 15 )==27 ) break;
}
cvReleaseImage( &image );
cvReleaseImage( &temp );
cvDestroyWindow( "Box Example" );
return 0;
}
void my_mouse_callback(
int event, int x, int y, int flags, void* param )
{
IplImage* image = (IplImage*) param;
switch( event ) {
case CV_EVENT_MOUSEMOVE: {
if( drawing_box ) {
box.width = x-box.x;
box.height = y-box.y;
radius=cvSqrt(box.width*box.width+box.height*box.height);
}
}
break;
case CV_EVENT_LBUTTONDOWN: {
drawing_box = true;
box = cvRect( x, y, 0, 0 );
Cx=x;
Cy=y;
}
break;
case CV_EVENT_LBUTTONUP: {
drawing_box = false;
if( box.width<0 ) {
box.x+=box.width;
box.width *=-1;
}
if( box.height<0 ) {
box.y+=box.height;
box.height*=-1;
}
draw_shaps( image);
}
break;
}
}