From b12106cd574b59db19a653bc1fc737815e5c54a0 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 21 Sep 2022 12:53:31 +0200 Subject: [PATCH] :sparkles: --- estimate_distance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/estimate_distance.py b/estimate_distance.py index d5ae64f..5b11c7a 100644 --- a/estimate_distance.py +++ b/estimate_distance.py @@ -4,7 +4,7 @@ def main(): arlo = Arlo(False) image = arlo.robot.take_photo() bounding_boxes = arlo.find_aruco(image) - print(bounding_boxes) + print(bounding_boxes[0][0]) arlo.estimate_distance(bounding_boxes[0][0]) if __name__ == "__main__":