Tutorial on how to use SUPERVISION API

Is there a tutorial/documentation on how to use SUPERVISION API itself?
I am interested to use this for Object Tracking and counting.

Hi :wave:

That is great to hear! :rocket:

For now, we have only limited learning materials as we are still actively working on the API. Things can move or change in the pip package between versions. And that’s why we don’t want to produce too much because we will need to maintain those materials when the API changes.

On the other hand, I would be happy to help you with your supervision work. By helping you I will get a better idea of what the needs of the community are.

For now, we have:

1 Like

Thank you. I get this error with supervision = 0.1.0.
AttributeError: module ‘supervision’ has no attribute ‘get_video_frames_generator’.
I import from supervision.video.source import get_video_frames_generator

I solved doing manual installation:
git clone https://github.com/roboflow/supervision.git
cd supervision
pip install -e "."

It works to me.