为<BCG的J峰算法定位>、<ECG的R峰算法定位>、<人工纠正>增加了不做滤波的选项

This commit is contained in:
Yorusora
2025-06-28 20:35:10 +08:00
parent aa0d59f925
commit c9202174fb
11 changed files with 292 additions and 133 deletions

View File

@ -139,6 +139,7 @@ class Params:
"Freq": 1000
},
"Filter": {
"Mode": "skip",
"BandPassLow": 2,
"BandPassHigh": 10
},
@ -159,6 +160,7 @@ class Params:
"Freq": 1000
},
"Filter": {
"Mode": "skip",
"BandPassLow": 1,
"BandPassHigh": 25
},
@ -174,6 +176,7 @@ class Params:
"Freq": 1000
},
"Filter": {
"Mode": "skip",
"BCGBandPassOrder": 2,
"BCGBandPassLow": 2,
"BCGBandPassHigh": 10,

View File

@ -24,6 +24,7 @@ class Constants:
PREPROCESSING_DATA: str = "正在预处理数据"
PREPROCESS_FINISHED: str = "预处理完成"
PREPROCESS_FAILURE: str = "预处理失败"
PREPROCESS_NO_NEED: str = "不需要预处理"
RESAMPLING_DATA: str = "正在数据重采样"
RESAMPLE_FINISHED: str = "重采样完成"