roboflow / supervision

We write your reusable computer vision tools. 💜
https://supervision.roboflow.com
MIT License
24.31k stars 1.81k forks source link

Detections Metadata #1585

Closed LinasKo closed 3 weeks ago

LinasKo commented 1 month ago

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:

  1. None: Model will never detect anything of that field
  2. empty array: Model detected no elements this time.
  3. 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:

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:

LinasKo commented 1 month ago

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:

LinasKo commented 1 month ago

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.

souhhmm commented 1 month ago

Hey, I'd like to give this issue a try.

codermks commented 1 month ago

Hey @LinasKo, I would like to work on this issue.

LinasKo commented 1 month ago

Hi @souhhmm 👋,

Let's see how it goes. Assigning it to you!

souhhmm commented 1 month ago

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?

LinasKo commented 1 month ago

Good question! For our purposes, this is empty. It could be that is_empty doesn't need changing after all.

souhhmm commented 1 month ago

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.

souhhmm commented 1 month ago

Hey @LinasKo, I've created PR #1589, please let me know about any changes/fixes. Looking forward to your feedback!

LinasKo commented 3 weeks ago

Thank you for your contribution @souhhmm!