如何在Qt Creator 2.8.1中使用鼠标左键单击事件和鼠标拖动事件在视频上绘制矩形基于Qt 5.1.1?

时间:2014-01-28 04:17:02

标签: qt visual-c++ opencv

我需要帮助,我想在Qt creator中使用鼠标左键单击在视频上绘制矩形。我在Qlabel中加载视频。我希望当我按下鼠标左键时,那些点应该成为矩形的起点(如x1,y1),然后我继续鼠标拖动而不离开鼠标左键,最后当我离开鼠标键时那些点应该成为我的矩形的终点(如x2,y2)。

我已经在visual studio 2008中使用visual C ++做了很多尝试在Qt创建者中尝试但是无法获得成功。 所以请帮助我。

提前致谢

这是我的鼠标事件将被调用的行。

cvSetMouseCallback("Motion Detector", mouseEvent, 0);

以下是我的鼠标事件完整代码:

void mouseEvent(int evt, int x, int y, int flags, void* param)
{
if(evt==CV_EVENT_LBUTTONDOWN)
{
     p1.x = x;
     p1.y = y;
     drag = 1;
    }

if(evt==CV_EVENT_LBUTTONUP)
{
     p2.x = x;
     p2.y = y;
     drag = 0;

    if(p1.x > p2.x)
    {
        int temp = p1.x;
        p1.x = p2.x;
        p2.x = temp;
    }

    if(p1.y > p2.y)
    {
        int temp = p1.y;
        p1.y = p2.y;
        p2.y = temp;
    }

    posx = p1.x;
    posy = p1.y;
    }

if(evt==CV_EVENT_MOUSEMOVE && drag==1)
{
    cvCopyImage(frame,img1,0);
    cvDrawRect(img1,p1,cvPoint(x,y),cvScalar(255,0,0,0),1,8,0);
    cvShowImage("Motion Detector",img1);
    }
}

这是我简单的Qt程序,它是QLabel中的显示图像,我想使用鼠标左键单击在该图像上绘制矩形并拖动矩形的大小,当我得到适当大小的矩形时,留下鼠标按钮。

Mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <opencv2/opencv.hpp>
#include <QFileDialog>
#include "QMouseEvent"
#include "QMoveEvent"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);

    //openImage();
}
MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::openImage()
{
    int x1 = 1,x2 = 640,y1 = 100;

    iplImg = cvLoadImage("E://img2.jpg");

    //cvLine(iplImg, cvPoint(x1,y1), cvPoint(x2,y1), cvScalar(255,0,0), 2, 0);

    qimgNew = QImage((const unsigned char*)iplImg->imageData,iplImg->width,iplImg->height,QImage::Format_RGB888).rgbSwapped();
    ui->lblImage->setPixmap(QPixmap::fromImage(qimgNew)); 
}

void MainWindow::on_btnOpen_clicked()
{
    openImage();
}

的main.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <opencv/cv.h>
#include <opencv/highgui.h>

#include <QMainWindow>
//#include <QtGui/QWidget>
#include<QMouseEvent>
#include<QGraphicsLineItem>
#include<QGraphicsScene>
#include<QGraphicsView>
#include<QGraphicsItem>
#include<QHBoxLayout>

namespace Ui {
class MainWindow;
}

namespace converter
{
    IplImage* QImage2IplImage(const QImage* qimg);
    QImage* IplImage2QImage(const IplImage* iplImg);
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();


private slots:

    void openImage();
    //void mousePressEvent();

    void on_btnOpen_clicked();
private:
    Ui::MainWindow *ui;
    //QString fileName;
    IplImage *iplImg;
    //char* charFileName;
    QImage qimgNew;
    //QImage qimgGray;
};
#endif // MAINWINDOW_H

.pro文件

QT += core gui

QT += widgets

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = Display_image_and_video
TEMPLATE = app


SOURCES += main.cpp\
        mainwindow.cpp

HEADERS  += mainwindow.h

FORMS    += mainwindow.ui

INCLUDEPATH += E:\\ImageProcessing\\opencv_cmake_binaries\\install\\include
LIBS += -LE:\\ImageProcessing\\opencv_cmake_binaries\\install\\lib \
    -lopencv_core244.dll \
    -lopencv_highgui244.dll \
    -lopencv_imgproc244.dll \
    -lopencv_features2d244.dll \
    -lopencv_calib3d244.dll

1 个答案:

答案 0 :(得分:0)

好吧,您可以首先覆盖QWidget中的虚拟函数:

看到事件被捕获(你应该为你不想画的标签QWidget做这个),然后在事件中改变了显示的图片。

在你为你的问题做了代码更新之后我会说你可以创建自己的小部件QLabel子类,添加上面提到的鼠标事件覆盖并使用QLabel的类实例insteat {{1}变量。然后在这些事件处理程序中更改像素映射。