Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Dive into Computer Vision, image recognition, object detection, segmentation, and more. Share projects, research, and tools powering AI’s visual understanding.
I'm working on an object detection project. Which datasets have you found most useful?
Nice object detection projects can be a lot of fun (and frustrating, in a good way). The dataset you choose really depends on what you're detecting, but some are just solid all around. If you’re working on general-purpose detection — stuff like people, cars, animals, etc. COCO is probably the go-tRead more
Nice object detection projects can be a lot of fun (and frustrating, in a good way). The dataset you choose really depends on what you’re detecting, but some are just solid all around.
If you’re working on general-purpose detection — stuff like people, cars, animals, etc. COCO is probably the go-to. It’s massive, diverse, and has great annotations (bounding boxes, segmentation masks, keypoints). Pascal VOC is a bit older, but still clean and good for smaller-scale testing or benchmarking.
If you’re dealing with specific domains, there are some really well-curated niche datasets:
Honestly, I’ve found that combining a good base dataset (like COCO) with a small, clean custom dataset for your specific use case usually gives the best results. You don’t always need 100,000 images just the right ones.
See lessIf you tell me what you’re trying to detect, I might be able to suggest something more specific.