资源简介
这个是基于qt的心电监护软件系统设计。qt是以C++为基础的软件。
代码片段和文件信息
#include “device.h“
#include “ui_device.h“
device::device(QWidget *parent) :
QWidget(parent)
ui(new Ui::device)
{
ui->setupUi(this);
ydata=QVector(6500000);
xdata=QVector(6500000);
subdata=QVector(6500000);
rdata=QVector(650000);
HR=0;
i=0;
j=0;
k=0;
Flags=1;
p=0;
file=new QFile(this);
savefile=new QFile(this);
time=new QTimer(this);
connect(timeSIGNAL(timeout())thisSLOT(getdataSlot()));
}
device::~device()
{
delete ui;
delete file;
delete savefile;
}
void device::getdataSlot()
{
if(in->atEnd())
{
savedata();
emit overSignal();
return;
}
ydata[i]=(double)(((in->readLine())).toDouble());
i++;
if(Flags)
{
wavedisplay();
}
if(i!=1&&i!=2)
{
HRcal();
}
}
void device::wavedisplay()
{
xdata[p]=k;
k=k+0.004;
emit wavedataSignal(xdata[p]ydata[i-1]);
p++;
return;
}
void device::HRcal()
{
//subdata[i]=ydata[i-1]-ydata[i-3];
subdata[i]=ydata[i-1]-2*ydata[i-2]+ydata[i-3];
if(subdata[i]>=15)
{
rdata[j]=i;
if(j>=1&&(rdata[j]-rdata[j-1])<20)
{
return;
}
if(j>=1)
{
HR=60/((rdata[j]-rdata[j-1])*0.004);
qDebug()<<“HR=“<
emit HRdataSignal(HR);
}
j++;
}
return;
}
void device::setFlags(int value)
{
Flags=value;
}
void device::openfile()
{
ydata.clear();
xdata.clear();
subdata.clear();
rdata.clear();
ydata=QVector(6500000);
xdata=QVector(6500000);
subdata=QVector(6500000);
rdata=QVector(650000);
HR=0;
i=0;
j=0;
k=0;
Flags=1;
p=0;
file->setFileName(“ECG.txt“);
file->open(QIODevice::ReadOnly | QIODevice::Text);
in=new QTextStream(file);
time->start(4);
}
void device::shutdown()
{
time->stop();
file->close();
}
void device::savedata()
{
if(ydata.isEmpty())
{
QMessageBox::information(this“ERROR““Sorry No Data“);
return;
}
QString saveFileName=QFileDialog::getSaveFileName(this“Save File“QDir::currentPath());
if(saveFileName.isEmpty())
{
QMessageBox::information(this“Error““Please Text A Name“);
return;
}
savefile->setFileName(saveFileName);
bool ok=savefile->open(QIODevice::WriteOnly | QIODevice::Text);
if(ok)
{
QTextStream out(savefile);
for(int z=0;z {
out< out< }
savefile->close();
}
else
{
QMessageBox::information(this“Error““Save File Error“);
return;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2898 2018-06-05 15:13 try-4\device.cpp
文件 998 2018-05-15 17:00 try-4\device.h
文件 403 2018-04-29 15:14 try-4\device.ui
文件 175 2018-05-06 18:39 try-4\main.cpp
文件 1118717 2017-09-04 08:02 try-4\qcustomplot.cpp
文件 266925 2017-09-04 08:02 try-4\qcustomplot.h
文件 441 2018-05-08 21:43 try-4\try-4.pro
文件 13527 2018-06-05 15:44 try-4\try-4.pro.user
文件 13499 2018-05-06 13:11 try-4\try-4.pro.user.2.1pre1
文件 5603 2018-06-05 15:07 try-4\widget.cpp
文件 1004 2018-05-17 16:07 try-4\widget.h
文件 2856 2018-05-08 21:44 try-4\widget.ui
目录 0 2018-09-16 19:41 try-4
----------- --------- ---------- ----- ----
1427046 13
- 上一篇:基于C++的JPEG图片信息隐藏及提取
- 下一篇:OpenCV贾志刚视频教程完整版
相关资源
- Qt 瑞士军刀开发工具
- qt处理图形
- c++ 画图(14Qt-XPS)
- QT CAN例程
- 使用Qt实现Excel读取工具
- Qt 通讯软件模块的开发
- Qt TCP聊天室demo
- Qt曲线
- qt样式表武林秘籍(73页)
- stm32 MQTT
- QT信号槽开发
- Wemos D1 mini阿里云MQTT例程
- QT 计算文件夹内所有代码行数
- qt写的记事本
- QT自定义皮肤例子56387
- qt上位机采集51单片机温湿度数据
- MQTT协议
- 五子棋C++(Qt版).zip
- Qt飞机大战小游戏源代码
- 基于qt的c++编写的贪吃蛇游戏
- 嵌入式Qt实战教程.
- QT5.9_c++开发指南——随书[源码]
- 基于Qt的智能停车场.rar
- QT实现视音频实时传输qml+C++
- QT开发多文档框架
- C++课程设计五子棋基于Qt4
- 简易防火墙使用C++与Qt4.5带源代码
- 数据库课程设计 - 汽车租借信息系统
- c++读取EXCEL表
-
minibl
ink c++ qt 浏览器
评论
共有 条评论