You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Objects not in this list will not be detected. To annotate other categories, supply a custom YOLO segmentation checkpoint via `model_backend`.
176
+
Objects not in this list will not be detected by the default checkpoint. To
177
+
annotate other categories, supply a custom YOLO segmentation checkpoint via
178
+
`model_backend`, or use the prompt-free YOLOE model described below for broader
179
+
annotation coverage.
177
180
178
181
---
179
182
@@ -226,8 +229,8 @@ Each `MaskAnnotation3D` item contains:
226
229
227
230
| Field | Type | Description |
228
231
|---|---|---|
229
-
|`label`|`str`|COCO class name, e.g. `"person"`, `"chair"`. |
230
-
|`class_id`|`int`|COCO integer class index (0-based). |
232
+
|`label`|`str`|Model class name, e.g. `"person"`, `"chair"`. With the default checkpoint this is a COCO class name; with prompt-free YOLOE this is a YOLOE runtime label. |
233
+
|`class_id`|`int`|Model class index (0-based). With the default checkpoint this is the COCO class index. |
231
234
|`confidence`|`float`| Detection confidence in `[0, 1]`. |
@@ -590,3 +593,51 @@ result = ObjectMaskAnnotation3D().run(
590
593
-**Relative depth point clouds** — if the input point cloud was generated by monocular depth estimation (which produces relative, not metric, depth), object sizes in 3D will not correspond to real-world dimensions. For metric results, use a calibrated stereo or RGB-D camera.
591
594
-**Open3D required** — this task requires Open3D, which currently only supports Python 3.12 in this project.
592
595
-**Front-view synthesis** — when no image is supplied, the synthesised view is a simple point-splatting projection. Dense regions render well; sparse or occluded regions may produce a patchy image that reduces detection quality compared to a real photo.
596
+
597
+
## Prompt-free YOLOE model for broader annotation
598
+
599
+
`ObjectMaskAnnotation3D` also supports the prompt-free YOLOE segmentation
0 commit comments