From c60cdc754d878ae7ccc846a8effbd98081a5e7ab Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 28 Nov 2011 23:58:43 +1000 Subject: [PATCH] Oximetery Flagging fixes --- SleepLib/calcs.cpp | 73 ++++++++++++++++++++++++++++++++------------ oximetry.cpp | 7 ++--- preferencesdialog.ui | 28 ++++++++--------- 3 files changed, 70 insertions(+), 38 deletions(-) diff --git a/SleepLib/calcs.cpp b/SleepLib/calcs.cpp index 7913bf16..e859e647 100644 --- a/SleepLib/calcs.cpp +++ b/SleepLib/calcs.cpp @@ -288,18 +288,22 @@ int calcPulseChange(Session *session) EventDataType val,val2,change,tmp; qint64 time,time2; bool ok; - qint64 window=PROFILE["PulseChangeTime"].toDouble(&ok); + qint64 window=PROFILE["PulseChangeDuration"].toDouble(&ok); if (!ok) { - PROFILE["PulseChangeTime"]=8; + PROFILE["PulseChangeDuration"]=8; window=8000; } else window*=1000; change=PROFILE["PulseChangeBPM"].toDouble(&ok); if (!ok) { - PROFILE["PulseChangeTime"]=5; + PROFILE["PulseChangeBPM"]=5; change=5; } - EventList *pc=new EventList(EVL_Waveform); + EventList *pc=new EventList(EVL_Event); + pc->setFirst(session->first(OXI_Pulse)); + qint64 lastt; + EventDataType lv=0; + int li=0; for (int e=0;e time+window) break; val2=el.data(j); tmp=fabs(val2-val); - if (tmp > change) { - pc->AddEvent(time2,tmp); - break; + if (tmp > lv) { + lastt=time2; + lv=tmp; + li=j; } } + if (lastt>0) { + qint64 len=(lastt-time)/1000.0; + pc->AddEvent(lastt,len); + i=li; + + } } } if (pc->count()==0) { @@ -325,7 +341,7 @@ int calcPulseChange(Session *session) } session->eventlist[OXI_PulseChange].push_back(pc); session->setMin(OXI_PulseChange,pc->min()); - session->setMax(OXI_PulseChange,pc->min()); + session->setMax(OXI_PulseChange,pc->max()); session->setCount(OXI_PulseChange,pc->count()); session->setFirst(OXI_PulseChange,pc->first()); session->setLast(OXI_PulseChange,pc->last()); @@ -343,9 +359,9 @@ int calcSPO2Drop(Session *session) EventDataType val,val2,change,tmp; qint64 time,time2; bool ok; - qint64 window=PROFILE["SPO2DropTime"].toDouble(&ok); + qint64 window=PROFILE["SPO2DropDuration"].toDouble(&ok); if (!ok) { - PROFILE["SPO2DropTime"]=4; + PROFILE["SPO2DropDuration"]=4; window=4000; } else window*=1000; change=PROFILE["SPO2DropPercentage"].toDouble(&ok); @@ -354,7 +370,10 @@ int calcSPO2Drop(Session *session) change=4; } - EventList *pc=new EventList(EVL_Waveform); + EventList *pc=new EventList(EVL_Event); + qint64 lastt; + EventDataType lv=0; + int li=0; for (int e=0;e time+window) break; + val2=el.data(j); - if (val2 change) { - pc->AddEvent(time2,tmp); - break; - } + + if (val2<=lv) { + lv=val2; + lastt=time2; + li=j; + //tmp=val-val2; + //if (tmp > change) { +// pc->AddEvent(time2,tmp); + //break; + //} } } + if (lastt>0) { + qint64 len=(lastt-time)/1000.0; + pc->AddEvent(lastt,len); + + i=li; + } } } if (pc->count()==0) { @@ -382,7 +415,7 @@ int calcSPO2Drop(Session *session) } session->eventlist[OXI_SPO2Drop].push_back(pc); session->setMin(OXI_SPO2Drop,pc->min()); - session->setMax(OXI_SPO2Drop,pc->min()); + session->setMax(OXI_SPO2Drop,pc->max()); session->setCount(OXI_SPO2Drop,pc->count()); session->setFirst(OXI_SPO2Drop,pc->first()); session->setLast(OXI_SPO2Drop,pc->last()); diff --git a/oximetry.cpp b/oximetry.cpp index 77bcb4d0..bffbb424 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -632,12 +632,11 @@ Oximetry::Oximetry(QWidget *parent,gGraphView * shared) : PLETHY->AddLayer(plethy); + + PULSE->AddLayer(lo1=new gLineOverlayBar(OXI_PulseChange,QColor("light gray"),"PD",FT_Span)); + SPO2->AddLayer(lo2=new gLineOverlayBar(OXI_SPO2Drop,QColor("light blue"),"O2",FT_Span)); PULSE->AddLayer(pulse); SPO2->AddLayer(spo2); - - PULSE->AddLayer(lo1=new gLineOverlayBar(OXI_PulseChange,QColor("dark gray"),"PD")); - //go->SetDay(day); - SPO2->AddLayer(lo2=new gLineOverlayBar(OXI_SPO2Drop,QColor("purple"),"O2")); PULSE->setDay(day); SPO2->setDay(day); diff --git a/preferencesdialog.ui b/preferencesdialog.ui index f6293b4d..e2a8d6fd 100644 --- a/preferencesdialog.ui +++ b/preferencesdialog.ui @@ -38,7 +38,7 @@ - 3 + 4 @@ -793,19 +793,6 @@ p, li { white-space: pre-wrap; } - - - - - 0 - 0 - - - - Application - - - @@ -852,6 +839,19 @@ p, li { white-space: pre-wrap; } + + + + + 0 + 0 + + + + Application + + +