2025-05-12 08:06:08 +00:00
|
|
|
|
import time
|
2025-05-13 09:44:34 +08:00
|
|
|
|
import sys
|
|
|
|
|
import os
|
2025-05-12 08:06:08 +00:00
|
|
|
|
|
2025-05-13 09:44:34 +08:00
|
|
|
|
# 添加父目录到路径,以便能够导入utils
|
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
2025-05-12 08:06:08 +00:00
|
|
|
|
|
2025-05-13 09:44:34 +08:00
|
|
|
|
from task_5.detect_arrow_direction import ArrowDetector
|
2025-05-12 08:06:08 +00:00
|
|
|
|
|
2025-05-13 09:44:34 +08:00
|
|
|
|
def run_task_5(ctrl, msg, image_processor=None):
|
2025-05-13 10:12:57 +00:00
|
|
|
|
pass
|