From dc9158a5066b4a23903243682084c67224ce849f Mon Sep 17 00:00:00 2001 From: Yorusora Date: Wed, 14 May 2025 20:30:43 +0800 Subject: [PATCH 1/2] =?UTF-8?q?1=E3=80=81=E4=BF=AE=E6=94=B9=E4=BA=86ECG?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6=E5=91=BD=E5=90=8D=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- func/utils/ConfigParams.py | 2 +- 数据结构化输入和输出命名规范.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/func/utils/ConfigParams.py b/func/utils/ConfigParams.py index ba52657..80c554d 100644 --- a/func/utils/ConfigParams.py +++ b/func/utils/ConfigParams.py @@ -68,7 +68,7 @@ class ConfigParams: } } PREPROCESS_INPUT_BCG_FILENAME: str = "orgBcg_Raw_" - PREPROCESS_INPUT_ECG_FILENAME: str = "ECG II_Raw_" + PREPROCESS_INPUT_ECG_FILENAME: str = "orgEcg II_Raw_" PREPROCESS_SAVE_BCG_FILENAME: str = "BCG_Raw_" PREPROCESS_SAVE_ECG_FILENAME: str = "ECG_Raw_" PREPROCESS_SAVE_CHUNK_SIZE: int = 1000000 diff --git a/数据结构化输入和输出命名规范.md b/数据结构化输入和输出命名规范.md index 30318af..d824773 100644 --- a/数据结构化输入和输出命名规范.md +++ b/数据结构化输入和输出命名规范.md @@ -40,8 +40,7 @@ |-Snore_Sync_采样率.txt |-SpO2_Sync_采样率.txt .../PSG_Text/ - |-Axxxxxxx.edf - |-ECG II_Raw_采样率.txt + |-orgEcg II_Raw_采样率.txt |-ECG_Raw_采样率.txt |-Rpeak_final.txt |-Rpeak_final_corrected.txt From efdbf5daae58351367a06669bf0c32c3407331aa Mon Sep 17 00:00:00 2001 From: Yorusora Date: Wed, 14 May 2025 21:01:49 +0800 Subject: [PATCH 2/2] =?UTF-8?q?1=E3=80=81=E5=88=A0=E5=8E=BB=E4=BA=86?= =?UTF-8?q?=E4=B8=8D=E5=BF=85=E8=A6=81=E7=9A=84=E5=BC=82=E5=B8=B8=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- func/utils/CustomException.py | 50 +---------------------------------- 1 file changed, 1 insertion(+), 49 deletions(-) diff --git a/func/utils/CustomException.py b/func/utils/CustomException.py index 0ed0a9e..d05ddbe 100644 --- a/func/utils/CustomException.py +++ b/func/utils/CustomException.py @@ -10,52 +10,4 @@ class MsgBoxTypeValueNotExistError(Exception): """MsgBox弹窗类型参数不存在异常""" def __init__(self): super().__init__() - error("MsgBox弹窗类型参数不存在异常") - -class PreprocessModeNotExistError(Exception): - """预处理类型不存在异常""" - def __init__(self): - super().__init__() - error("预处理类型不存在异常") - -class RPeakDetectMethodNotExistError(Exception): - """R峰算法定位检测方法不存在异常""" - def __init__(self): - super().__init__() - error("R峰提取检测方法不存在异常") - -class JPeakDetectMethodsError(Exception): - """J峰算法定位检测方法选择异常""" - def __init__(self): - super().__init__() - error("J峰算法定位检测方法选择异常") - -class LabelCheckModeNotExistError(Exception): - """人工纠正类型不存在异常""" - def __init__(self): - super().__init__() - error("人工纠正类型不存在异常") - -class ArtifactLabelUnknownError(Exception): - """体动标注未知异常""" - def __init__(self): - super().__init__() - error("体动打标未知异常") - -class BCGQualityLabelTableWidgetNotExistError(Exception): - """BCG质量标注表格元素不存在异常""" - def __init__(self): - super().__init__() - error("BCG质量标注表格元素不存在异常") - -class RespQualityLabelOutOfIndexError(Exception): - """呼吸可用性及间期标注数组越界异常""" - def __init__(self): - super().__init__() - error("呼吸可用性及间期标注数组越界异常") - -class RespQualityLabelTableWidgetNotExistError(Exception): - """呼吸可用性及间期标注表格元素不存在异常""" - def __init__(self): - super().__init__() - error("呼吸可用性及间期标注表格元素不存在异常") \ No newline at end of file + error("MsgBox弹窗类型参数不存在异常") \ No newline at end of file