1

mouseClicksに基づいてOpenCVで画像を操作したいと思います。

QLabel を使用して cv::Mat 画像を表示しています。今私の問題は、画像に対するマウスのクリック位置を取得することです。したがって、画像の左上隅に (0,0) が必要です。

以下は私の mousePressEvent ですが、これらは正しい座標ではありません。

void MainWindow::mousePressEvent( QMouseEvent* ev )
{


//This seems to work thanks to Pavel
        QPoint P = ui->label->mapFrom(this, ev->pos())



    //if( ui->label->underMouse() )
    {
        QMessageBox msgBox;
        //m

sgBox.setText(QString("Click Detected X=")+QString::number(mFirstX)+QString(" Y=")+QString::number(mFirstY));
            msgBox.setText("x ="+QString::number(P.x()) + " y= " + QString::number(P.y()));
            msgBox.exec();
        }


    }

    bool MainWindow::eventFilter(QObject *obj, QEvent *event)
    {
      if (event->type() == QEvent::MouseMove)
      {


           QMouseEvent *mouseEvent = static_cast<QMouseEvent*>(event);
    ///////
    */// This seem to still give wrong position, these values do not match to those I get when I /// click
    ///////
            const QPoint P = ui->label->mapFrom(this, mouseEvent->pos());
            //statusBar()->showMessage(QString("Mouse move (%1,%2)").arg(mouseEvent->pos().x()).arg(mo
useEvent->pos().y()));
        statusBar()->showMessage(QString("Mouse move (%1,%2)").arg(P.x()).arg(P.y()));
      }

      return false;
    }*

助けてください。

4

1 に答える 1