Object detection - I uploaded around 500 images and annotated them.
But in labels folder for all images coordinates are same. label for each images is same except class id. Like in the below both labels 0.5, 0.5, 1, 1 are same.
4 0.5 0.5 1 1
2 0.5 0.5 1 1
Apologies if it’s simple question. I am new to computer vision and training the models. I followed your video on youtube and worked on this. Can you please help me where I am wrong and how can I solve this problem.
The annotation format for YOLOv8 is class_id center_x center_y width height and since this entire image seems to be one object, that annotation makes sense. (It’s highlighting the entire image)
It appears you used the Isolate Objects preprocessing feature. It’s intended to turn object detection datasets (drawing boxes around items) to a classification dataset (labeling one entire image) which I assume you don’t want.
You can remove this preprocessing step when generating a new version, which should solve your issues.