From 4e2c1027d2e1c7ed46dbd3af198d14d20afc9166 Mon Sep 17 00:00:00 2001 From: status102 <102887808+status102@users.noreply.github.com> Date: Sat, 7 Jun 2025 17:26:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=B7=E7=90=86=E6=99=BA=E6=88=98?= =?UTF-8?q?=E6=96=97=E5=90=8E=E6=8E=89=E8=90=BD=E8=AF=86=E5=88=AB=E4=BB=A3?= =?UTF-8?q?=E7=90=86=E5=80=8D=E7=8E=87=E6=AC=A1=E6=95=B0=E4=B8=AD=E6=96=87?= =?UTF-8?q?=E5=85=B3=E9=94=AE=E8=AF=8D=E4=BD=BF=E7=94=A8=E5=8E=9F=E5=9B=BE?= =?UTF-8?q?,=20=E4=BB=A5=E9=81=BF=E5=85=8D=E9=98=88=E5=80=BC=E8=BF=87?= =?UTF-8?q?=E6=BB=A4=E9=80=A0=E6=88=90=E7=9A=84=E8=BE=B9=E7=BC=98=E7=BB=86?= =?UTF-8?q?=E8=8A=82=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix #12910 --- src/MaaCore/Vision/Miscellaneous/StageDropsImageAnalyzer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/MaaCore/Vision/Miscellaneous/StageDropsImageAnalyzer.cpp b/src/MaaCore/Vision/Miscellaneous/StageDropsImageAnalyzer.cpp index 0d0adaee19..42ed97efbd 100644 --- a/src/MaaCore/Vision/Miscellaneous/StageDropsImageAnalyzer.cpp +++ b/src/MaaCore/Vision/Miscellaneous/StageDropsImageAnalyzer.cpp @@ -85,6 +85,7 @@ bool asst::StageDropsImageAnalyzer::analyze_times() LogTraceFunction; RegionOCRer check_analyzer(m_image); check_analyzer.set_task_info("StageDrops-TimesCheck"); + check_analyzer.set_use_raw(true); if (!check_analyzer.analyze()) { m_times = -1; // not found Log.info(__FUNCTION__, "Times not found"); @@ -105,6 +106,7 @@ bool asst::StageDropsImageAnalyzer::analyze_times() RegionOCRer rec_analyzer(m_image); rec_analyzer.set_task_info("StageDrops-TimesRec"); + rec_analyzer.set_use_raw(true); if (!rec_analyzer.analyze()) { m_times = -2; // recognition failed Log.error(__FUNCTION__, "recognition failed");