2013-02-17 61 views
5

这是我试过的代码,只有坐标值被打印,但不是像素值。使用鼠标回调打印坐标和像素值

#include <iostream> 
#include <opencv2/highgui/highgui.hpp> 
#include <opencv2/imgproc/imgproc.hpp> 

void onMouse(int event, int x, int y, int, void*); 
using namespace cv; 

Mat img = cv::imread("b.jpg", 0); // force grayscale 
Mat thresh=Mat::zeros(img.size(),CV_8UC1); 

int main(int argc, char **argv) 
{ 

    if(!img.data) { 
     std::cout << "File not found" << std::endl; 
     return -1; 
    } 

    threshold(img,binary,50,255,THRESH_TOZERO); 

    namedWindow("thresh"); 
    setMouseCallback("thresh", onMouse, 0); 

    imshow("thresh",thresh); 
} 

void onMouse(int event, int x, int y, int, void*) 
{ 
    if(event != CV_EVENT_LBUTTONDOWN) 
      return; 

    Point pt = Point(x,y); 
    std::cout<<"x="<<pt.x<<"\t y="<<pt.y<<"\t value="<<thresh.at<uchar>(x,y)<<"\n"; 

} 

我得到了输出为: -

screenshot

的坐标值被印刷但是像素值没有被正确打印。我犯的错误是什么?

回答

5

cout将uchar打印为字符,就像您看到的那样。

只是包装他们铸造为int的印刷:

cout << int(thresh.at<uchar>(y,x)) 

also note, that it's at<uchar>(y,x), not x,y 
+0

谢谢@berak。另一个qn:在.at (y,x)中,哪一个表示行号和列号? (row_no,column_no)' – 2013-02-17 10:39:25

+0

'基本上:y = row_no,x = column_no' – berak 2013-02-17 11:43:38