QT-RTSP相机监控视频流

QT-RTSP相机监控视频流

  • 一、演示效果
  • 二、关键程序
  • 三、下载链接

一、演示效果

在这里插入图片描述

二、关键程序

#include "mainwindow.h"#include <QDebug>MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), m_settings("outSmart", "LiveWatcher") {ip_address_edit = new QLineEdit;login_edit = new QLineEdit;password_edit = new QLineEdit;password_edit->setEchoMode(QLineEdit::Password);label0 = new QLabel;label0->setText("IP address:");label1 = new QLabel;label1->setText("Login:");label2 = new QLabel;label2->setText("Password:");button1 = new QPushButton;button1->setText("Connect");connect(button1, SIGNAL(clicked()), SLOT(slotConnectDisconnect()) );videoWidget = new VideoWidget(this);videoWidget->setMinimumSize(704, 576);player0 = new QMediaPlayer;player0->setVideoOutput(videoWidget);layout1 = new QVBoxLayout;layout1->addWidget(label0);layout1->addWidget(ip_address_edit);layout1->addWidget(label1);layout1->addWidget(login_edit);layout1->addWidget(label2);layout1->addWidget(password_edit);spacer0 = new QSpacerItem(30, 40, QSizePolicy::Minimum, QSizePolicy::Maximum);layout1->addSpacerItem(spacer0);layout1->addWidget(button1);layout1->setContentsMargins(10, 10, 10, 10);layout2 = new QVBoxLayout;layout2->addWidget(videoWidget);layout0 = new QHBoxLayout;layout0->addLayout(layout2);layout0->addLayout(layout1);layout0->setAlignment(layout1, Qt::AlignTop) ;QWidget * window = new QWidget();window->setLayout(layout0);setCentralWidget(window);QRegExpValidator *ipValidator = new QRegExpValidator(ipRegex, this);ip_address_edit->setValidator(ipValidator);readSettings();QAction* pactShowHide = new QAction("&Show/Hide Application Window", this);connect(pactShowHide, SIGNAL(triggered()),this,         SLOT(slotShowHide()));QAction* pactQuit = new QAction("&Quit", this);connect(pactQuit, SIGNAL(triggered()), qApp, SLOT(quit()));m_ptrayIconMenu = new QMenu(this);m_ptrayIconMenu->addAction(pactShowHide);m_ptrayIconMenu->addAction(pactQuit);m_ptrayIcon = new QSystemTrayIcon(this);m_ptrayIcon->setContextMenu(m_ptrayIconMenu);m_ptrayIcon->setToolTip("LiveWatcher");m_ptrayIcon->setIcon(QPixmap(":/images/logo.png"));m_ptrayIcon->show();createMenus();}MainWindow::~MainWindow()
{writeSettings();
}void MainWindow::slotConnectDisconnect()
{if (!is_connected) {QString login = login_edit->text() ;QString password = password_edit->text() ;QString ip_address = ip_address_edit->text() ;if (!ipRegex1.match(ip_address).hasMatch() ) {QMessageBox::critical(this, "Error", "Wrong format for IP address");return;}url0 = QUrl("rtsp://" + ip_address + ":554/ISAPI/Streaming/Channels/102");url0.setUserName(login);url0.setPassword(password);requestRtsp0 = QNetworkRequest(url0);player0->setMedia(requestRtsp0);player0->play();is_connected = true;button1->setText("Disconnect");}else {player0->stop();button1->setText("Connect");is_connected = false;}}void MainWindow::keyPressEvent(QKeyEvent *event)
{if (event->key() == Qt::Key_F11) {if (videoWidget != nullptr) {videoWidget->setFullScreen(true);}}else if (event->key() == Qt::Key_Escape) {qApp->quit();}}void MainWindow::writeSettings() {m_settings.beginGroup("/Settings");m_settings.setValue("/ip_address", ip_address_edit->text() ) ;m_settings.setValue("/login", login_edit->text() );m_settings.setValue("/password", password_edit->text() );m_settings.endGroup();}void MainWindow::readSettings() {m_settings.beginGroup("/Settings");ip_address_edit->setText(m_settings.value("/ip_address", "").toString() );login_edit->setText(m_settings.value("/login", "admin").toString() );password_edit->setText(m_settings.value("/password", "Freedom!00##").toString() );m_settings.endGroup();}void MainWindow::slotShowHide()
{setVisible(!isVisible());
}void MainWindow::closeEvent(QCloseEvent * event)
{setVisible(false);event->ignore();
}void MainWindow::showAbout() {QMessageBox::about(this, "About", "aleks.twin@gmail.com");}void MainWindow::createMenus()
{QAction *quit = new QAction("&Quit", this);QMenu *file;file = menuBar()->addMenu(tr("&File"));file->addAction(quit);connect(quit, &QAction::triggered, qApp, QApplication::quit);QMenu *settingsMenu;settingsMenu = menuBar()->addMenu(tr("&Settings"));QAction * colorSettingsAct = new QAction(tr("&Color settings"), this);colorSettingsAct->setStatusTip(tr("Show color settings"));connect(colorSettingsAct, &QAction::triggered, this, &MainWindow::showColorDialog);settingsMenu->addAction(colorSettingsAct);QMenu *helpMenu;helpMenu = menuBar()->addMenu(tr("&Help"));QAction * hotKeysAct = new QAction(tr("&Hot keys"), this);connect(hotKeysAct, &QAction::triggered, this, &MainWindow::showHotKeys);helpMenu->addAction(hotKeysAct);helpMenu->addSeparator();QAction * aboutAct = new QAction(tr("&About"), this);aboutAct->setStatusTip(tr("Create a new file"));connect(aboutAct, &QAction::triggered, this, &MainWindow::showAbout);helpMenu->addAction(aboutAct);}void MainWindow::showColorDialog() {if (!m_colorDialog) {QSlider *brightnessSlider = new QSlider(Qt::Horizontal);brightnessSlider->setRange(-100, 100);brightnessSlider->setValue(videoWidget->brightness());connect(brightnessSlider, &QSlider::sliderMoved, videoWidget, &QVideoWidget::setBrightness);connect(videoWidget, &QVideoWidget::brightnessChanged, brightnessSlider, &QSlider::setValue);QSlider *contrastSlider = new QSlider(Qt::Horizontal);contrastSlider->setRange(-100, 100);contrastSlider->setValue(videoWidget->contrast());connect(contrastSlider, &QSlider::sliderMoved, videoWidget, &QVideoWidget::setContrast);connect(videoWidget, &QVideoWidget::contrastChanged, contrastSlider, &QSlider::setValue);QSlider *hueSlider = new QSlider(Qt::Horizontal);hueSlider->setRange(-100, 100);hueSlider->setValue(videoWidget->hue());connect(hueSlider, &QSlider::sliderMoved, videoWidget, &QVideoWidget::setHue);connect(videoWidget, &QVideoWidget::hueChanged, hueSlider, &QSlider::setValue);QSlider *saturationSlider = new QSlider(Qt::Horizontal);saturationSlider->setRange(-100, 100);saturationSlider->setValue(videoWidget->saturation());connect(saturationSlider, &QSlider::sliderMoved, videoWidget, &QVideoWidget::setSaturation);connect(videoWidget, &QVideoWidget::saturationChanged, saturationSlider, &QSlider::setValue);QFormLayout *layout = new QFormLayout;layout->addRow(tr("Brightness"), brightnessSlider);layout->addRow(tr("Contrast"), contrastSlider);layout->addRow(tr("Hue"), hueSlider);layout->addRow(tr("Saturation"), saturationSlider);QPushButton *button = new QPushButton(tr("Close"));layout->addRow(button);m_colorDialog = new QDialog(this, Qt::WindowSystemMenuHint | Qt::WindowTitleHint);m_colorDialog->setWindowTitle(tr("Color Options"));m_colorDialog->setLayout(layout);connect(button, &QPushButton::clicked, m_colorDialog, &QDialog::close);}m_colorDialog->show();
}void MainWindow::showHotKeys() {QLabel * q_label = new QLabel();q_label->setStyleSheet(styleSheet() );q_label->setText("F11 - full screeen\nEcsape - exit full screen\n");q_label->setContentsMargins(10,10,10,10);q_label->setWindowTitle("Hot keys");q_label->setFixedSize(240, 60);q_label->show();
}

#include "videowidget.h"#include <QKeyEvent>
#include <QMouseEvent>VideoWidget::VideoWidget(QWidget *parent): QVideoWidget(parent)
{setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored);QPalette p = palette();p.setColor(QPalette::Window, Qt::black);setPalette(p);setAttribute(Qt::WA_OpaquePaintEvent);
}void VideoWidget::keyPressEvent(QKeyEvent *event)
{if (event->key() == Qt::Key_Escape && isFullScreen()) {setFullScreen(false);event->accept();} else {QVideoWidget::keyPressEvent(event);}
}void VideoWidget::mouseDoubleClickEvent(QMouseEvent *event)
{setFullScreen(!isFullScreen());event->accept();
}void VideoWidget::mousePressEvent(QMouseEvent *event)
{QVideoWidget::mousePressEvent(event);
}

三、下载链接

https://download.csdn.net/download/u013083044/89550321

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://xiahunao.cn/news/3246958.html

如若内容造成侵权/违法违规/事实不符,请联系瞎胡闹网进行投诉反馈,一经查实,立即删除!

相关文章

为什么品牌需要做 IP 形象?

品牌做IP形象的原因有多方面&#xff0c;这些原因共同构成了IP形象在品牌建设中的重要性和价值&#xff0c;主要原因有以下几个方面&#xff1a; 增强品牌识别度与记忆点&#xff1a; IP形象作为品牌的视觉符号&#xff0c;具有独特性和辨识性&#xff0c;能够在消费者心中留…

CSA笔记2-文件管理命令

tree 以树状图显示多级目录 示例&#xff1a; [rootlocalhost ~]# tree haha/ haha/ └── 111 └── 222 2 directories, 0 files [rootlocalhost ~]# tree -L 1 haha/haha/ └── 111 echo > >> < << 示例&#xff1a; [rootxxx ~]#…

【ACM 独立出版,高录用EI稳检索】2024年大数据与数字化管理国际学术会议 (ICBDDM 2024,8月16-18)

2024年大数据与数字化管理国际学术会议 (ICBDDM 2024)&#xff0c;将于2024年8月16-18日在中国上海召开。 “大数据与数字化管理”作为会议主题&#xff0c;旨在聚焦这一跨学科领域中最新的理论研究、技术进展、实践案例和未来趋势。本主题探讨的研究方向涵盖了大数据的收集、…

国家炮制规范-中药饮片炮制规范数据库

2022年12月21日&#xff0c;国家药监局实施了国家药典委员会制定的《国家中药饮片炮制规范》&#xff08;简称《国家炮制规范》&#xff09;&#xff0c;属于中药饮片的国家药品标准&#xff0c;各省需废止与其品名、来源、炮制方法、规格均相同品种的省级中药饮片炮制规范。这…

2024河南萌新联赛第一场 D 小蓝的二进制询问

原题链接&#xff1a;D-小蓝的二进制询问 题意&#xff1a;思路&#xff1a;对于从[l,r]上的数&#xff0c;可以先算出从[0,r]的所有二进制1然后减去[0,l]的所有二进制1。思考如何计算&#xff0c;从样例中给出的5来思考&#xff0c;[0,5]的二进制表示分别为&#xff1a;000&a…

力扣经典题目之->用栈实现队列 的详细讲解与实现,看这篇就够了!

一&#xff1a;题目 二&#xff1a;思路 1&#xff1a;先看两个概念&#xff1a; 2&#xff1a;题目的理解 用两个栈来实现队列&#xff08;表面&#xff09; 用栈的函数来实队列&#xff08;深层&#xff09; 用先进先出的栈函数 来实现后进先出的队列函数 &#xff08;本…

耐玩单机游戏推荐:文明6 电脑游戏分享

《文明VI》呈现融入世界的新方式&#xff1a;城市现已在版图上扩充疆域&#xff0c;积极研究技术和文化可解锁新潜能&#xff0c;而相互竞争的领导者们也将根据其历史特质追寻自己的新议程&#xff0c;而你也将借助五种方式之一取得游戏的胜利。 系统需求 最低配置: 需要 64 …

自动打电话工具开发需要用到的源代码!

随着移动互联网的飞速发展&#xff0c;自动打电话工具的开发需求日益增加&#xff0c;这类工具能够为用户提供便捷的通信体验&#xff0c;节省时间成本&#xff0c;提高生活效率。 然而&#xff0c;要实现自动打电话的功能&#xff0c;并非易事&#xff0c;本文将科普自动打电…

效率飙升!用升级版思维导图搞定测试用例

Xmind思维导图&#xff1c;转&#xff1e;测试用例_如何将xmind改成测试用例-CSDN博客https://weiyv.blog.csdn.net/article/details/135920569 上一次的【xmind思维导图转测试用例】的文章浏览量飙升&#xff0c;这一次把工具又进行升级啦&#xff0c;是在线版的免费工具哦&am…

leetcode日记(42)螺旋矩阵

我使用的是递归&#xff0c;每次递归遍历一圈矩阵&#xff0c;将遍历结果塞进结果vector中&#xff0c;每次遍历修改上下左右边界&#xff0c;直至遍历后其中两边界重合或交错。 class Solution { public:vector<int> spiralOrder(vector<vector<int>>&…

Photoneo 3D 网格划分

Photoneo 3D 网格划分是一种多功能软件解决方案&#xff0c;专为快速、精确的 3D 模型而设计 从多个 3D 扫描或来自 Photoneo 3D 传感器的连续 3D 数据流创建。它 旨在实现适用于各种应用的高级 3D 数据采集&#xff0c;例如 机器人引导、质量检查和逆向工程。 它以两个单独的库…

HarmonyOS 开发者联盟高级认证最新题库

本篇文章包含 Next 版本更新后高级认证题库中95%的题目。 答案正确率 50-60%&#xff0c;答案仅做参考。 请在考试前重点看一遍题目&#xff0c;勿要盲目抄答案。 欢迎在评论留言正确答案和未整理的题目。 1、下面关于方舟字节码格式PREF_IMM16_v8_v8描述正确的是 16位前缀操作…

OSU!题解(概率dp)

题目&#xff1a;OSU! - 洛谷 思路&#xff1a; 设E()表示截止到i所获得的分数&#xff1b; 对于到i点的每一个l&#xff0c;如果第i1点为1&#xff0c;那么会新增分数3*l^23*l1; 就有递推公式方程&#xff1a; E()E()p[i1]p*(3*l^23*l1);(p代表截止到i获得长度l的概率)&a…

C++ :友元类

友元类的概念和使用 (1)将类A声明为B中的friend class后&#xff0c;则A中所有成员函数都成为类B的友元函数了 (2)代码实战&#xff1a;友元类的定义和使用友元类是单向的 (3)友元类是单向的&#xff0c;代码实战验证 互为友元类 (1)2个类可以互为友元类&#xff0c;代码实战…

刷题了:数组理论基础,704. 二分查找,27. 移除元素

学习记录&#xff0c;主要参考&#xff1a;代码随想录 数组理论基础 数组是存放在连续内存空间上的相同类型数据的集合。 数组下标都是从0开始的 数组的元素是不能删的&#xff0c;只能覆盖。 704. 二分查找 要熟悉 根据 左闭右开&#xff0c;左闭右闭 两种区间规则 写出来…

Bubble Cup 13 - Finals [Online Mirror, unrated, Div. 2] --- G. Years (DSmap)

首先会想到树状数组或者差分&#xff0c;但是数据范围为1e9&#xff0c;所以不可取。 那么对于这道题就要用巧妙的方法。 我们可以看到题目也给出了一定的提示&#xff0c;输入的b和d代表了一个人的出生和死亡年份&#xff0c;那么也就是说&#xff0c;假如我们假设出眼前有一…

安全与加密常识(9)5分钟带你了解经常听到的cookie

文章目录 Cookie是什么Cookie有什么用Cookie的表示Cookie设置过程Cookie的生命周期 Cookie是什么 cookie的中文翻译是曲奇&#xff0c;小甜饼的意思。Cookie&#xff08;HTTP cookie&#xff09;是一种服务器存储在用户计算机上的小型数据文件&#xff0c;用于存储特定网站的用…

javaWeb 增删改查基本操作

通过之前的文章可以快速的了解SpringBoot 项目&#xff0c;这是一个关于增删改查的案例&#xff0c;可以巩固之前学习到的知识。 案例开始 准备工作 需求 开发员工管理系统&#xff0c;提供增删改查功能。 环境搭建 数据库&#xff08;mysql&#xff09; emp、dept表导入 #…

Oracle线上执行SQL特别慢的原因分析

一、背景&#xff1a; 线上反馈一张表select * from table where idxxx语句执行特别慢&#xff0c;超过60s超时不能处理&#xff0c;第一直觉是索引失效了&#xff0c;开始执行创建索引语句create index index_name on table() online。但是执行了超过20分钟索引还没有创建成功…

自动驾驶车道线检测系列—3D-LaneNet: End-to-End 3D Multiple Lane Detection

文章目录 1. 摘要概述2. 背景介绍3. 方法3.1 俯视图投影3.2 网络结构3.2.1 投影变换层3.2.2 投影变换层3.2.3 道路投影预测分支 3.3 车道预测头3.4 训练和真实值关联 4. 实验4.1 合成 3D 车道数据集4.2 真实世界 3D 车道数据集4.3 评估结果4.4 评估图像仅车道检测 5. 总结和讨论…