0

我在我的项目中使用 C++ 中的 opencv 库,但在使用 MouseCallback 时遇到问题。

我有一个 BoardCalibration 类,它有两个数据成员,我需要在回调函数中使用它们。你可以在下面看到这个类:

class BoardCalibration{
private:
    Rect _box;  <-- data members i need to upadte inside the callback function
    bool _drawingBox; <--

public:
    BoardCalibration();
    static void my_mouse_callback(int event, int x, int y, int flags, void* param);
    Rect calibrate(Mat& image);
    void drawBox(IplImage* img);
};

在 calibrate() 方法中,我调用了接收回调 my_mouse_callback 函数的函数。代码:

Rect BoardCalibration::calibrate(Mat& image){
    IplImage * img = new IplImage(image);

    namedWindow("Calibration");

    IplImage *temp = cvCloneImage(img);
    cvSetMouseCallback("Calibration", my_mouse_callback, (void *)img);

    while (1){

        imshow("Calibration", Mat(img));
        cvCopyImage(img,temp);

        if( _drawingBox ){
            drawBox(temp);
        }

        imshow("Calibration", Mat(temp));

        if (waitKey(1)>=0)
            break;
    }

    cout << "calibrated\n";

    delete img;
    return _box;
}

在 my_mouse_callback 的实现是:

static 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( _drawingBox ) {
            _box.width  = x-_box.x;
            _box.height = y-_box.y;
        }
                             }
                             break;
    case CV_EVENT_LBUTTONDOWN: {
        _drawingBox = true;
        _box = Rect( x, y, 0, 0 );
                               }
                               break;   
    case CV_EVENT_LBUTTONUP: {
        _drawingBox = false; 
        if( _box.width<0 ) { 
            _box.x+=_box.width;  
            _box.width *=-1; 
        }
        if( _box.height<0 ) { 
            _box.y+=_box.height; 
            _box.height*=-1; 
        }

        //drawBox(image, box);  // keep draw on screen
        // display rectangle coordinates
        cout << "TopLeft: (" << _box.x << "," << _box.y << "), BottomRight: (" 
            << _box.x+_box.width << "," << _box.y+_box.height << ")" << endl;
                             }
                             break;
    }
}

如您所见,我正在尝试访问 _box 和 _drawingBox 成员,但因为它是静态方法,所以无法识别它们。我怎么解决这个问题??我不能改变 my_mouse_callback 的原型,否则它不会被 cvSetMouseCallback 接受。我也不能在类之外定义那些数据成员,因为它给了我他们已经定义的错误。还有什么我可以尝试的吗???谢谢。

4

3 回答 3

6

我对opencv一无所知,但是像这样的东西怎么样

struct Helper
{
    IplImage * pI;
    BoardCalibration * pObj;
};


Rect BoardCalibration::calibrate(Mat& image)
{
    .... stuff ....

    Helper * p = new Helper;
    p->pI = img;
    p->pObj = this;

    cvSetMouseCallback("Calibration", my_mouse_callback, (void *)p);

    .... stuff ...   


    delete p;
    delete img;
    return _box;

}


static void BoardCalibration::my_mouse_callback(int event, int x, int y, int flags, void* param)
{
    Helper * p = (Helper *)param;
    IplImage* image = p->pI;
    BoardCalibration * pBC = p->pObj;

    switch( event ) 
    {
        case CV_EVENT_MOUSEMOVE: 
        {
            if( pBC->_drawingBox )  // use the pBC pointer

            ... stuff ...


    }

    ... stuff ...

}

我不知道您的代码流程以确定何时应该删除帮助对象。所以我在delete Helper object附近有代码,delete img因为如果该代码是正确的,那么这也可能是deleteHelper 对象的正确位置。但是你需要检查一下。只有当您确定回调将在那时为该调用完成运行时,您才需要删除此对象。

于 2012-12-27T23:21:38.347 回答
1

好,我知道了。你应该这样做。它已经成功了。

1) cvSetMouseCallback("Calibration", my_mouse_callback, (void *)this); // Callback function to give it a this pointer.
2) BoardCalibration* ptr = (BoardCalibration*) param; // ptr pointer to your class.
3) e.g ptr->  _box oder ptr-> _drawingBox //all the private parameters,that you need to use, do this:

祝你好运。我希望它能帮助你解决问题。咬sehr。王秋月。

于 2013-01-04T14:54:32.963 回答
0

我不知道细节是怎么做的,但我有一个想法,如果我们可以

cvSetMouseCallback("Calibration", my_mouse_callback, (void *)img);

param(object) 是要传递给回调函数的用户定义参数。因此,如果我们可以代替img,使用pointer指向class,也许我们可以使用this->所有私有参数或class.all 公共函数。但我只是有这个想法,你应该尝试一下,也许会成功......

祝你好运。告诉我你是否成功了。王。

于 2013-01-04T13:38:54.777 回答