From bc26051e9910b224a3cf2fc4dc1204e7bf5ebdb8 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Tue, 7 May 2024 15:35:24 -0700 Subject: [PATCH] describe box output --- vision_agent/tools/tools_v2.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vision_agent/tools/tools_v2.py b/vision_agent/tools/tools_v2.py index 20170a15..2016410e 100644 --- a/vision_agent/tools/tools_v2.py +++ b/vision_agent/tools/tools_v2.py @@ -60,7 +60,8 @@ def grounding_dino( Returns: List[Dict[str, Any]]: A list of dictionaries containing the score, label, and - bounding box of the detected objects with normalized coordinates. + bounding box of the detected objects with normalized coordinates + (x1, y1, x2, y2). Example ------- @@ -111,7 +112,8 @@ def grounding_sam( Returns: List[Dict[str, Any]]: A list of dictionaries containing the score, label, - bounding box, and mask of the detected objects with normalized coordinates. + bounding box, and mask of the detected objects with normalized coordinates + (x1, y1, x2, y2). Example -------