What to do after image.manual

Hello!

What to do after annotate images using image.manual? Should I create/train a model using the annotations in the dataset? If yes, how can I do that?

Thanks in advance!

Yes, that's one thing you could be doing with the annotations. The data will give you the image data and the pixel coordinates of the bounding boxes. The implementation you choose and how you train it is up to you. And the specifics of the training process depend on the library you choose. If you're just getting started, I think fast.ai has some good resources and implementations for different computer vision tasks.

Also, here's an example and tutorial for using Prodigy with TensorFlow's object detection API:

1 Like

Thanks a lot, Ines! I will study it :slight_smile: