在OpenCV中利用鼠标绘制矩形和截取图像的矩形区域

这是两个相关的程序,前者是后者的基础。实际上前一个程序也是在前面博文的基础上做的修改,请参考《在OpenCV中利用鼠标绘制直线》 。下面贴出代码。

程序之一,在OpenCV中利用鼠标绘制矩形

[c-sharp] view plaincopy
  1. #include <cv.h>
  2. #include <highgui.h>
  3. #include <stdio.h>
  4. #pragma comment( lib, "cv.lib" )
  5. #pragma comment( lib, "cxcore.lib" )
  6. #pragma comment( lib, "highgui.lib" )
  7. IplImage* src = 0;
  8. IplImage* dst = 0;
  9. void on_mouse( int event, int x, int y, int flags, void* ustc)
  10. {
  11. static CvPoint pre_pt = {-1,-1};
  12. static CvPoint cur_pt = {-1,-1};
  13. CvFont font;
  14. cvInitFont(&font, CV_FONT_HERSHEY_SIMPLEX, 0.5, 0.5, 0, 1, CV_AA);
  15. char temp[16];
  16. if( event == CV_EVENT_LBUTTONDOWN )
  17. {
  18. cvCopy(dst,src);
  19. sprintf(temp,"(%d,%d)",x,y);
  20. pre_pt = cvPoint(x,y);
  21. cvPutText(src,temp, pre_pt, &font, cvScalar(0,0, 0, 255));
  22. cvCircle( src, pre_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 );
  23. cvShowImage( "src", src );
  24. cvCopy(src,dst);
  25. }
  26. else if( event == CV_EVENT_MOUSEMOVE && !(flags & CV_EVENT_FLAG_LBUTTON))
  27. {
  28. cvCopy(dst,src);
  29. sprintf(temp,"(%d,%d)",x,y);
  30. cur_pt = cvPoint(x,y);
  31. cvPutText(src,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  32. cvShowImage( "src", src );
  33. }
  34. else if( event == CV_EVENT_MOUSEMOVE && (flags & CV_EVENT_FLAG_LBUTTON))
  35. {
  36. cvCopy(dst,src);
  37. sprintf(temp,"(%d,%d)",x,y);
  38. cur_pt = cvPoint(x,y);
  39. cvPutText(src,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  40. cvRectangle(src, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 );
  41. cvShowImage( "src", src );
  42. }
  43. else if( event == CV_EVENT_LBUTTONUP )
  44. {
  45. sprintf(temp,"(%d,%d)",x,y);
  46. cur_pt = cvPoint(x,y);
  47. cvPutText(src,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  48. cvCircle( src, cur_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 );
  49. cvRectangle( src, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 );
  50. cvShowImage( "src", src );
  51. cvCopy(src,dst);
  52. }
  53. }
  54. int main()
  55. {
  56. src=cvLoadImage("lena.jpg",1);
  57. dst=cvCloneImage(src);
  58. cvNamedWindow("src",1);
  59. cvSetMouseCallback( "src", on_mouse, 0 );
  60. cvShowImage("src",src);
  61. cvWaitKey(0);
  62. cvDestroyAllWindows();
  63. cvReleaseImage(&src);
  64. cvReleaseImage(&dst);
  65. return 0;
  66. }

效果图如下

在OpenCV中利用鼠标绘制矩形和截取图像的矩形区域

程序之二,在OpenCV中利用鼠标绘制矩形并截取该矩形区域的图像

[c-sharp] view plaincopy
  1. #include <cv.h>
  2. #include <highgui.h>
  3. #include <stdio.h>
  4. #pragma comment( lib, "cv.lib" )
  5. #pragma comment( lib, "cxcore.lib" )
  6. #pragma comment( lib, "highgui.lib" )
  7. IplImage* org = 0;
  8. IplImage* img = 0;
  9. IplImage* tmp = 0;
  10. IplImage* dst = 0;
  11. void on_mouse( int event, int x, int y, int flags, void* ustc)
  12. {
  13. static CvPoint pre_pt = {-1,-1};
  14. static CvPoint cur_pt = {-1,-1};
  15. CvFont font;
  16. cvInitFont(&font, CV_FONT_HERSHEY_SIMPLEX, 0.5, 0.5, 0, 1, CV_AA);
  17. char temp[16];
  18. if( event == CV_EVENT_LBUTTONDOWN )
  19. {
  20. cvCopy(org,img);
  21. sprintf(temp,"(%d,%d)",x,y);
  22. pre_pt = cvPoint(x,y);
  23. cvPutText(img,temp, pre_pt, &font, cvScalar(0,0, 0, 255));
  24. cvCircle( img, pre_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 );
  25. cvShowImage( "img", img );
  26. cvCopy(img,tmp);
  27. }
  28. else if( event == CV_EVENT_MOUSEMOVE && !(flags & CV_EVENT_FLAG_LBUTTON))
  29. {
  30. cvCopy(tmp,img);
  31. sprintf(temp,"(%d,%d)",x,y);
  32. cur_pt = cvPoint(x,y);
  33. cvPutText(img,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  34. cvShowImage( "img", img );
  35. }
  36. else if( event == CV_EVENT_MOUSEMOVE && (flags & CV_EVENT_FLAG_LBUTTON))
  37. {
  38. cvCopy(tmp,img);
  39. sprintf(temp,"(%d,%d)",x,y);
  40. cur_pt = cvPoint(x,y);
  41. cvPutText(img,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  42. cvRectangle(img, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 );
  43. cvShowImage( "img", img );
  44. }
  45. else if( event == CV_EVENT_LBUTTONUP )
  46. {
  47. cvCopy(tmp,img);
  48. sprintf(temp,"(%d,%d)",x,y);
  49. cur_pt = cvPoint(x,y);
  50. cvPutText(img,temp, cur_pt, &font, cvScalar(0,0, 0, 255));
  51. cvCircle( img, cur_pt, 3,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 );
  52. cvRectangle( img, pre_pt, cur_pt, cvScalar(0,255,0,0), 1, 8, 0 );
  53. cvShowImage( "img", img );
  54. cvCopy(img,tmp);
  55. int width=abs(pre_pt.x-cur_pt.x);
  56. int height=abs(pre_pt.y-cur_pt.y);
  57. if(width==0 || height==0)
  58. {
  59. cvDestroyWindow("dst");
  60. return;
  61. }
  62. dst=cvCreateImage(cvSize(width,height),org->depth,org->nChannels);
  63. CvRect rect;
  64. if(pre_pt.x<cur_pt.x && pre_pt.y<cur_pt.y)
  65. {
  66. rect=cvRect(pre_pt.x,pre_pt.y,width,height);
  67. }
  68. else if(pre_pt.x>cur_pt.x && pre_pt.y<cur_pt.y)
  69. {
  70. rect=cvRect(cur_pt.x,pre_pt.y,width,height);
  71. }
  72. else if(pre_pt.x>cur_pt.x && pre_pt.y>cur_pt.y)
  73. {
  74. rect=cvRect(cur_pt.x,cur_pt.y,width,height);
  75. }
  76. else if(pre_pt.x<cur_pt.x && pre_pt.y>cur_pt.y)
  77. {
  78. rect=cvRect(pre_pt.x,cur_pt.y,width,height);
  79. }
  80. cvSetImageROI(org,rect);
  81. cvCopy(org,dst);
  82. cvResetImageROI(org);
  83. cvDestroyWindow("dst");
  84. cvNamedWindow("dst",1);
  85. cvShowImage("dst",dst);
  86. cvSaveImage("dst.jpg",dst);
  87. }
  88. }
  89. int main()
  90. {
  91. org=cvLoadImage("lena.jpg",1);
  92. img=cvCloneImage(org);
  93. tmp=cvCloneImage(org);
  94. cvNamedWindow("img",1);
  95. cvSetMouseCallback( "img", on_mouse, 0 );
  96. cvShowImage("img",img);
  97. cvWaitKey(0);
  98. cvDestroyAllWindows();
  99. cvReleaseImage(&org);
  100. cvReleaseImage(&img);
  101. cvReleaseImage(&tmp);
  102. cvReleaseImage(&dst);
  103. return 0;
  104. }

效果图如下

在OpenCV中利用鼠标绘制矩形和截取图像的矩形区域

在OpenCV中利用鼠标绘制矩形和截取图像的矩形区域

from:http://blog.csdn.net/quarryman/article/details/6435527

上一篇:分享知识-快乐自己:Linux下安装 erlang 及 RabbitmMQ


下一篇:linux下安装rabbitmq