From cc4f33c0fde71e7e822c6e90e9c33fabb6f02153 Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Thu, 22 Jan 2026 11:43:40 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=E7=A7=BB=E9=99=A4=20LeavePostAlgorith?= =?UTF-8?q?m=EF=BC=8C=E6=94=B9=E7=94=A8=20ROI=20=E5=8C=BA=E5=9F=9F?= =?UTF-8?q?=E5=85=A5=E4=BE=B5=E6=A3=80=E6=B5=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -修复sort导入问题 --- inference/rules/algorithms.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inference/rules/algorithms.py b/inference/rules/algorithms.py index d2fc4b9..78a462b 100644 --- a/inference/rules/algorithms.py +++ b/inference/rules/algorithms.py @@ -9,6 +9,8 @@ import numpy as np sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from sort import Sort + class LeavePostAlgorithm: STATE_INIT = "INIT_STATE"