• 4、QtCharts 做心电图



    请添加图片描述

    ui界面

    在这里插入图片描述

    在这里插入图片描述

    核心代码

    void Dialog::slot_timer()
    {
        qreal xOffset=0.f;//x的偏移量,推进的距离
        qreal dIncrease=10;//增加量
        //数据
        for(int i=0;i<10;i++)
        {
            m_x+=dIncrease;
            xOffset+=dIncrease;
            m_splineSerise->append(m_x,qrand()%10);//根据实际情况删除多余数据
        }
    
        //删除多余数据
        if(m_splineSerise->count()>c_MaxSize)
        {
            m_splineSerise->removePoints(0,m_splineSerise->count()*0.5-c_MaxSize);//删除多余数据
        }
    
    
        //计算x周每个单位的宽度
        qreal xUnit =m_chart->plotArea().width()/(m_axisX->max()-m_axisX->min());
        qreal xScroll =xOffset*xUnit;
    
        m_chart->scroll(xScroll,0);//对x轴进行滚动
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    全部代码

    #include "dialog.h"
    #include "ui_dialog.h"
    
    const quint32 c_MaxSize=1000;//数据个数
    
    Dialog::Dialog(QWidget *parent)
        :QDialog(parent)
        ,ui(new Ui::Dialog)
        ,m_x(0.f)
        ,m_splineSerise(NULL)
    {
        ui->setupUi(this);
    
    
        //构建曲线系列
        m_splineSerise=new QSplineSeries(this);
    
        //为折线图添加初始数据:第一个位置决定了心电图的曲线终点位置
        m_x=1000;
        m_splineSerise->append(m_x,1);
    
    
        //构建图标对象
        m_chart=new QChart();
    
        //注意:先添加到图表再创建坐标轴,否则无效
    
        //1.将折线系列添加到图表
        m_chart->addSeries(m_splineSerise);
    
        //构建坐标轴
        m_axisX = new QValueAxis();
        m_axisX->setRange(0,c_MaxSize);
        m_axisX->setTitleText(QStringLiteral("X"));//设置标题
        m_axisX->setLabelFormat("%g");//设置格式
        m_axisX->setTickCount(5);//设置刻度数
        m_axisY= new QValueAxis();
        m_axisY->setRange(-10,10);
        m_axisY->setTitleText(QStringLiteral("Y"));
    
        //将坐标轴绑定
        m_chart->setAxisX(m_axisX,m_splineSerise);
        m_chart->setAxisY(m_axisY,m_splineSerise);
    
         //隐藏图例
         m_chart->legend()->hide();
    
    
        //设置图标主题
        m_chart->setTheme(QtCharts::QChart::ChartThemeBlueCerulean);
        //设置标题
        m_chart->setTitle(QString("图表1"));
        //设置尺寸
        m_chart->setGeometry(0,0,500,300);
    
    
        //构建场景
        m_pScene =new QGraphicsScene(this);
    
        //为视图构建场景
        ui->graphicsView->setScene(m_pScene);
    
        //将图表添加到场景
        m_pScene->addItem(m_chart);
    
        //设置抗锯齿
        ui->graphicsView->setRenderHint(QPainter::Antialiasing,true);
    
    
        //构造定时器
        m_timer=new QTimer(this);
        m_timer->setInterval(100);//设置定时器间隔
        //绑定定时器
        connect(m_timer,&QTimer::timeout,this,&Dialog::slot_timer);
        m_timer->start();
    
    
    }
    
    Dialog::~Dialog()
    {
        m_chart->removeAllSeries();
        delete ui;
    }
    
    qreal Dialog::getData(qreal x)
    {
        return qSin(x*2*M_PI)*7;
    }
    
    void Dialog::slot_timer()
    {
        qreal xOffset=0.f;//x的偏移量,推进的距离
        qreal dIncrease=10;//增加量
        //数据
        for(int i=0;i<10;i++)
        {
            m_x+=dIncrease;
            xOffset+=dIncrease;
            m_splineSerise->append(m_x,qrand()%10);//根据实际情况删除多余数据
        }
    
        //删除多余数据
        if(m_splineSerise->count()>c_MaxSize)
        {
            m_splineSerise->removePoints(0,m_splineSerise->count()*0.5-c_MaxSize);//删除多余数据
        }
    
    
        //计算x周每个单位的宽度
        qreal xUnit =m_chart->plotArea().width()/(m_axisX->max()-m_axisX->min());
        qreal xScroll =xOffset*xUnit;
    
        m_chart->scroll(xScroll,0);//对x轴进行滚动
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
  • 相关阅读:
    JVM--基础--24.2--日志参数
    新零售模式这么应用,太牛了
    外贸edm客户开发信
    鸿蒙HarmonyOS实战-ArkUI组件(Canvas)
    Python学习基础笔记五——列表
    【云原生 | 从零开始学Kubernetes】九、k8s的node节点选择器与node节点亲和性
    【rust/egui】(七)看看template的app.rs:Slider
    Redis(一)--Redis入门(3)--Java客户端-Jedis
    【GNN报告】ICT敖翔:图机器学习应对金融欺诈对抗攻击
    掌握信息利器,快速发现潜在商机——介绍一款高效的数据检索软件
  • 原文地址:https://blog.csdn.net/weixin_45672157/article/details/134090292