supervision
supervision copied to clipboard
Detections Metadata
Detections Metadata
[!TIP] Hacktoberfest is calling! Whether it's your first PR or your 50th, youβre helping shape the future of open source. Help us build the most reliable and user-friendly computer vision library out there! π±
This is a summarized version of #1226. See the original discussion for more context.
In brief: Detections object stores arrays of values and a dict of arrays, each of length N. We'd like to add a global dict of values to store data on a collection-level.
I expect this to be a hard issue, as it involves many elements within the library.
Detections is a class for encoding the results of any model - detection, segmentation, etc. Here's how it looks:
@dataclass
class Detections:
xyxy: np.ndarray
mask: Optional[np.ndarray] = None
confidence: Optional[np.ndarray] = None
class_id: Optional[np.ndarray] = None
tracker_id: Optional[np.ndarray] = None
data: Dict[str, Union[np.ndarray, List]] = field(default_factory=dict)
All of these, as well as data contents are either:
None: Model will never detect anything of that fieldempty array: Model detected no elements this time.- Array of N elements: N objects were detected in your image.
What if we want to store 1 value per-list? E.g. a video name for what every detection was extracted from? Or camera parameters?
Let's introduce a new field: metadata. Detections will now look as follows:
@dataclass
class Detections:
xyxy: np.ndarray
mask: Optional[np.ndarray] = None
confidence: Optional[np.ndarray] = None
class_id: Optional[np.ndarray] = None
tracker_id: Optional[np.ndarray] = None
data: Dict[str, Union[np.ndarray, List]] = field(default_factory=dict)
metadata: Dict[str, Any] = field(default_factory=dict)
The users can set it directly by doing detections.metadata["key"] = "val".
The primary complexity is caused by functions that merge, slice, split and index into detections.
Relevant methods to be updated:
__eq__should use metadata for comparisonis_emptyshould borrow the data for comparison, just like it does withdata.__iter__, should NOT return metadata.- None of the
from_...methods should be affected mergeshould:- retain metadata even when all detections passed were empty.
- call a new
merge_metadatafunction. merge_datais rather aggressive. It merges if the keys are identical. Let's mimick that here as well - merge if the keys are the same, and the values are identical, while assuming thatmergetook care of empty detetions.
validate_detection_fieldsshould not - there's nothing to check so far.__getitem__can return either adataelement or a sliced detections object. Let's update so it sets the metadata as well.- setitem is unaffected.
merge_inner_detection_object_pairshould merge metadata similarly to howmergedoes it.- JsonSink and CsvSink handle writing detections to files. Let's not touch it yet.
I believe I've covered everything, but we'll check later on. When testing, make sure to test these changes, as well as ByteTrack.update_with_detections and sv.DetectionsSmoother.update_with_detection.
Helpful links:
Contribution guidelines
If you would like to make a contribution, please check that no one else is assigned already. Then leave a comment such as "Hi, I would like to work on this issue". We're happy to answer any questions about the task even if you choose not to contribute.
Testing
Please share a Google Colab with minimal code to test the new feature. We know it's additional work, but it will speed up the review process. You may use the Starter Template. The reviewer must test each change. Setting up a local environment to do this is time-consuming. Please ensure that Google Colab can be accessed without any issues (make it public). Thank you! :pray:
Note: For historical reasons, Detections.empty() and Detections.is_empty() are an exception. When returning frames from a video, for example, the same model may return some defined as array / None when successfully detecting objects, but different fields defined as array / None when nothing is detected. Therefore, empty detections are mostly checked with Detections.is_empty() and treated as a special case.
Hey, I'd like to give this issue a try.
Hey @LinasKo, I would like to work on this issue.
Hi @souhhmm π,
Let's see how it goes. Assigning it to you!
Hey @LinasKo, I have a query. Is a detection empty if the metadata is not empty? If so, is there a need to change is_empty at all?
For example,
empty_detection = sv.Detections(
xyxy=np.empty((0, 4)),
data={},
metadata={"camera_id": 1}
)
Is this empty?
Good question! For our purposes, this is empty. It could be that is_empty doesn't need changing after all.
Thank you for the clarification. I'll create a PR with a linked colab soon.
Edit: I feel is_empty does require some changes, figuring it out.
Hey @LinasKo, I've created PR #1589, please let me know about any changes/fixes. Looking forward to your feedback!
Thank you for your contribution @souhhmm!