Get a specific pixel coordinates where your mouse on (cc)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Get a specific pixel coordinates where your mouse on (cc)相关的知识,希望对你有一定的参考价值。

  1. #include <cv.h>    
  2. #include <highgui.h>    
  3. #include <stdio.h>    
  4.   
  5. IplImage* src=0;    
  6.   
  7. void on_mouse( int event, int x, int y, int flags, void* ustc)    
  8. {    
  9.     CvFont font;    
  10.     cvInitFont(&font, CV_FONT_HERSHEY_SIMPLEX, 0.5, 0.5, 0, 1, CV_AA);    
  11.     if( event == CV_EVENT_LBUTTONDOWN )    
  12.     {    
  13.         CvPoint pt = cvPoint(x,y);    
  14.         char temp[16];    
  15.         sprintf(temp,"(%d,%d)",pt.x,pt.y);    
  16.         cvPutText(src,temp, pt, &font, cvScalar(255, 255, 255, 0));    
  17.         cvCircle( src, pt, 2,cvScalar(255,0,0,0) ,CV_FILLED, CV_AA, 0 );    
  18.         cvShowImage( "src", src );    
  19.     }     
  20. }    
  21.   
  22. int main()    
  23. {    
  24.     src=cvLoadImage("lena.jpg",1);    
  25.     cvNamedWindow("src",1);    
  26.     cvSetMouseCallback( "src", on_mouse, 0 );    
  27.   
  28.     cvShowImage("src",src);    
  29.   
  30.     cvWaitKey(0);     
  31.     cvDestroyAllWindows();    
  32.     cvReleaseImage(&src);    
  33.   
  34.     return 0;    
  35. }    

以上是关于Get a specific pixel coordinates where your mouse on (cc)的主要内容,如果未能解决你的问题,请参考以下文章

python float'()'的位置

pandas使用groupby函数进行分组聚合使用get_group函数获取指定分组的数据(extract specific group after groupby in dataframe)

GCD的Queue-Specific

判断图像中有多少行文本(开发中)

使用 Spring 和 specification-arg-resolver 实现 find all

ES中查询语句DSL(domain specific language)