Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -22,6 +22,8 @@ license: openrail
|
|
22 |
|
23 |
PROMPT: use detection (bounding box) and segmentation (segmenation and mask) techniques to detect brain tumors in the image.
|
24 |
|
|
|
|
|
25 |
## Creating instructions
|
26 |
|
27 |
- Load the image from the given file path '/home/user/xxxx.jpg'.
|
@@ -32,7 +34,7 @@ PROMPT: use detection (bounding box) and segmentation (segmenation and mask) te
|
|
32 |
- Save the final image with both bounding boxes and segmentation masks to a specified output path.
|
33 |
|
34 |
|
35 |
-
## Retrieving tools
|
36 |
|
37 |
- 'load_image' is a utility function that loads an image from the given file path string.
|
38 |
'save_image' is a utility function that saves an image to a file path.
|
@@ -45,7 +47,7 @@ PROMPT: use detection (bounding box) and segmentation (segmenation and mask) te
|
|
45 |
- 'overlay_segmentation_masks' is a utility function that displays segmentation masks.
|
46 |
|
47 |
|
48 |
-
### Retrieving tools - detailed notes
|
49 |
|
50 |
load_image(image_path: str) -> numpy.ndarray:
|
51 |
'load_image' is a utility function that loads an image from the given file path string.
|
|
|
22 |
|
23 |
PROMPT: use detection (bounding box) and segmentation (segmenation and mask) techniques to detect brain tumors in the image.
|
24 |
|
25 |
+
# Summary of Vision Agent design-time workflow
|
26 |
+
|
27 |
## Creating instructions
|
28 |
|
29 |
- Load the image from the given file path '/home/user/xxxx.jpg'.
|
|
|
34 |
- Save the final image with both bounding boxes and segmentation masks to a specified output path.
|
35 |
|
36 |
|
37 |
+
## Retrieving Vision Agent tools
|
38 |
|
39 |
- 'load_image' is a utility function that loads an image from the given file path string.
|
40 |
'save_image' is a utility function that saves an image to a file path.
|
|
|
47 |
- 'overlay_segmentation_masks' is a utility function that displays segmentation masks.
|
48 |
|
49 |
|
50 |
+
### Retrieving tools - detailed notes from Vision Agent tool selection
|
51 |
|
52 |
load_image(image_path: str) -> numpy.ndarray:
|
53 |
'load_image' is a utility function that loads an image from the given file path string.
|