01.15

发布时间:2024年01月15日

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

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

    VideoCapture mv;
   mv.open("D:\\opencv\\heads\\01.mp4");

   //定义一个存放视频里读取到的一帧图像
   Mat src;
   //定义一个存放灰度视频的
   Mat gray;
   //定义一个存放均衡化的容器
    Mat dst;
   while(mv.read(src)){
        //显示图像

       imshow("test1",src);

       //灰度处理
        cvtColor(src,gray,CV_BGR2GRAY);
        namedWindow("test2");
        imshow("test2",gray);

       equalizeHist(gray,dst);
       namedWindow("test3");

       imshow("test3",dst);

       if(waitKey(40)==27){
            break;

       }
   }

void Widget::on_deleteBtn_clicked()
{
    QSqlQuery query;
    int numb=ui->numberEdit->text().toUInt();
     QString name=ui->nameEdit->text();
     if(numb==0&&name.isEmpty()){
         QMessageBox::information(this,"提示","请填写完整信息");
     return;
     }else if(numb!=0){
    QString sql=QString("delete from stu_info_table where numb=%1 ").arg(numb);
    if(query.exec(sql)){
        QMessageBox::information(this,"提示","删除成功!");

    }else{
           QMessageBox::information(this,"错误","删除失败!");

    }
     }else if(!name.isEmpty()){
         QString sql=QString("delete from stu_info_table where name='%1' ").arg(name);

    if(query.exec(sql)){
        QMessageBox::information(this,"提示","删除成功!");

    }else{
           QMessageBox::information(this,"错误","删除失败!");

    }
     }
}

文章来源:https://blog.csdn.net/Sujianrui/article/details/135609045
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。