From b360cff1a6f59a58bd1f394ac9722a723d7cd1c3 Mon Sep 17 00:00:00 2001 From: Netceor <45135347+Netceor@users.noreply.github.com> Date: Wed, 15 Nov 2023 15:09:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BA=86AEM?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- robowaiter/scene/tasks/AEM.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/robowaiter/scene/tasks/AEM.py b/robowaiter/scene/tasks/AEM.py index 2ac5d4b..8c3a899 100644 --- a/robowaiter/scene/tasks/AEM.py +++ b/robowaiter/scene/tasks/AEM.py @@ -12,7 +12,11 @@ class SceneAEM(Scene): def _reset(self): pass def _run(self): - + cur_objs = [] + print('------------ 自主探索 ------------') + cur_objs = self.semantic_map.navigation_move(cur_objs, 0, 11) + print("物品列表如下:") + print(cur_objs) pass @@ -26,4 +30,4 @@ if __name__ == '__main__': # create task task = SceneAEM(robot) task.reset() - task.run() \ No newline at end of file + task.run()