在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Qt动态心电图绘制-利用队列进行实时绘制

Qt动态心电图绘制-利用队列进行实时绘制

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:24.89M
  • 下载次数:19
  • 浏览次数:240
  • 发布时间:2020-10-27
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
动态心电图绘制,通过qt定时器,实现心电图从左往右进行绘制,到达坐标轴最大值后,再从左往右继续进行绘制。 添加了模拟数据到来的定时器,在定时器槽函数内加入队列。这部分的函数可以用做实际工程TCP/串口数据到来加入队列缓存。 文章地址:https://blog.csdn.net/DoleH/article/details/86489639
【实例截图】
【核心代码】
Qt动态心电图绘制-利用队列进行实时绘制
├── real_time_ecg
│   ├── GeneratedFiles
│   │   ├── Debug
│   │   │   ├── moc_data_process.cpp
│   │   │   └── moc_real_time_ecg.cpp
│   │   ├── qrc_data_process.cpp
│   │   ├── qrc_real_time_ecg.cpp
│   │   ├── Release
│   │   │   └── moc_real_time_ecg.cpp
│   │   ├── ui_data_process.h
│   │   └── ui_real_time_ecg.h
│   ├── main.cpp
│   ├── my_helper.h
│   ├── real_time_ecg.cpp
│   ├── real_time_ecg.h
│   ├── real_time_ecg.qrc
│   ├── real_time_ecg.ui
│   ├── real_time_ecg.vcxproj
│   ├── real_time_ecg.vcxproj.filters
│   ├── real_time_ecg.vcxproj.user
│   ├── x64
│   │   ├── Debug
│   │   │   ├── data_process.log
│   │   │   ├── data_process.obj
│   │   │   ├── data_process.tlog
│   │   │   │   ├── CL.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── data_process.lastbuildstate
│   │   │   │   ├── data_process.write.1u.tlog
│   │   │   │   ├── link.command.1.tlog
│   │   │   │   ├── link.read.1.tlog
│   │   │   │   ├── link.write.1.tlog
│   │   │   │   ├── QtMoc.read.1u.tlog
│   │   │   │   ├── QtMoc.write.1u.tlog
│   │   │   │   ├── QtRcc.read.1u.tlog
│   │   │   │   ├── QtRcc.write.1u.tlog
│   │   │   │   ├── QtUic.read.1u.tlog
│   │   │   │   └── QtUic.write.1u.tlog
│   │   │   ├── main.obj
│   │   │   ├── moc_data_process.obj
│   │   │   ├── moc_real_time_ecg.obj
│   │   │   ├── qrc_data_process.obj
│   │   │   ├── qrc_real_time_ecg.obj
│   │   │   ├── qt.log
│   │   │   ├── qt.txt
│   │   │   ├── qt_work.log
│   │   │   ├── real_time_ecg.log
│   │   │   ├── real_time_ecg.obj
│   │   │   ├── real_time_ecg.tlog
│   │   │   │   ├── CL.command.1.tlog
│   │   │   │   ├── CL.read.1.tlog
│   │   │   │   ├── CL.write.1.tlog
│   │   │   │   ├── link.command.1.tlog
│   │   │   │   ├── link.read.1.tlog
│   │   │   │   ├── link.write.1.tlog
│   │   │   │   ├── moc.read.1u.tlog
│   │   │   │   ├── moc.write.1u.tlog
│   │   │   │   ├── QtMoc.read.1u.tlog
│   │   │   │   ├── QtMoc.write.1u.tlog
│   │   │   │   ├── QtRcc.read.1u.tlog
│   │   │   │   ├── QtRcc.write.1u.tlog
│   │   │   │   ├── QtUic.read.1u.tlog
│   │   │   │   ├── QtUic.write.1u.tlog
│   │   │   │   ├── rcc.read.1u.tlog
│   │   │   │   ├── rcc.write.1u.tlog
│   │   │   │   ├── real_time_ecg.lastbuildstate
│   │   │   │   ├── real_time_ecg.write.1u.tlog
│   │   │   │   ├── uic.read.1u.tlog
│   │   │   │   └── uic.write.1u.tlog
│   │   │   └── vc141.pdb
│   │   └── Release
│   │   ├── main.obj
│   │   ├── moc_real_time_ecg.obj
│   │   ├── qrc_real_time_ecg.obj
│   │   ├── qt_work.log
│   │   ├── real_time_ecg.log
│   │   ├── real_time_ecg.obj
│   │   └── real_time_ecg.tlog
│   │   ├── CL.command.1.tlog
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── link.command.1.tlog
│   │   ├── link.read.1.tlog
│   │   ├── link.write.1.tlog
│   │   ├── moc.read.1u.tlog
│   │   ├── moc.write.1u.tlog
│   │   ├── rcc.read.1u.tlog
│   │   ├── rcc.write.1u.tlog
│   │   ├── real_time_ecg.lastbuildstate
│   │   ├── real_time_ecg.write.1u.tlog
│   │   ├── uic.read.1u.tlog
│   │   └── uic.write.1u.tlog
│   └── 实时心电处理.txt
├── real_time_ecg.sln
├── x64
│   ├── Debug
│   │   ├── data_process.exe
│   │   ├── data_process.ilk
│   │   ├── data_process.pdb
│   │   ├── real_time_ecg.exe
│   │   ├── real_time_ecg.ilk
│   │   └── real_time_ecg.pdb
│   └── Release
│   ├── D3Dcompiler_47.dll
│   ├── iconengines
│   │   └── qsvgicon.dll
│   ├── imageformats
│   │   ├── qgif.dll
│   │   ├── qicns.dll
│   │   ├── qico.dll
│   │   ├── qjpeg.dll
│   │   ├── qsvg.dll
│   │   ├── qtga.dll
│   │   ├── qtiff.dll
│   │   ├── qwbmp.dll
│   │   └── qwebp.dll
│   ├── libEGL.dll
│   ├── libGLESV2.dll
│   ├── opengl32sw.dll
│   ├── platforms
│   │   └── qwindows.dll
│   ├── Qt5Charts.dll
│   ├── Qt5Core.dll
│   ├── Qt5Gui.dll
│   ├── Qt5Svg.dll
│   ├── Qt5Widgets.dll
│   ├── real_time_ecg.exe
│   ├── styles
│   │   └── qwindowsvistastyle.dll
│   └── translations
│   ├── qt_ar.qm
│   ├── qt_bg.qm
│   ├── qt_ca.qm
│   ├── qt_cs.qm
│   ├── qt_da.qm
│   ├── qt_de.qm
│   ├── qt_en.qm
│   ├── qt_es.qm
│   ├── qt_fi.qm
│   ├── qt_fr.qm
│   ├── qt_gd.qm
│   ├── qt_he.qm
│   ├── qt_hu.qm
│   ├── qt_it.qm
│   ├── qt_ja.qm
│   ├── qt_ko.qm
│   ├── qt_lv.qm
│   ├── qt_pl.qm
│   ├── qt_ru.qm
│   ├── qt_sk.qm
│   └── qt_uk.qm
├── 实时心电图显示 利用队列.txt
└── 心电波形数据.csv

18 directories, 136 files

标签:

实例下载地址

Qt动态心电图绘制-利用队列进行实时绘制

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警