From 31a6160c972ab41aef3b854b8043e2fc25e132f1 Mon Sep 17 00:00:00 2001 From: Yorusora Date: Fri, 30 May 2025 20:46:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86<=E5=91=BC=E5=90=B8?= =?UTF-8?q?=E5=8F=AF=E7=94=A8=E6=80=A7=E5=8F=8A=E9=97=B4=E6=9C=9F=E6=A0=87?= =?UTF-8?q?=E6=B3=A8>=E4=B8=AD=E7=BB=98=E5=9B=BE=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- func/Module_resp_quality_label.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/func/Module_resp_quality_label.py b/func/Module_resp_quality_label.py index 54c9577..5da029e 100644 --- a/func/Module_resp_quality_label.py +++ b/func/Module_resp_quality_label.py @@ -416,7 +416,7 @@ class MainWindow_resp_quality_label(QMainWindow): mask = mask.astype(float64) for i in artifact_type_seq: mask[i] = self.data.artifact_mask[begin_OrgBCG:end_OrgBCG] == i - mask[i] = (BDR[begin_OrgBCG:end_OrgBCG] * mask[i]).astype(float64) + mask[i] = (BDR * mask[i]).astype(float64) place(mask[i], mask[i] == 0, nan) self.ax0.plot(arange(begin_OrgBCG, end_OrgBCG), mask[i], label=f"{Constants.RESP_QUALITY_LABEL_PLOT_LABEL_ARTIFACT}{i}", color=Constants.PLOT_COLOR_RED,