Negative sample image dimensions for training cascaded classifier in OpenCV?
Asked Answered
O

1

1

So following up from here, I now need to collect negative samples, for cascaded classification using OpenCV. With positive samples, I know that all samples should have the same aspect ratio.

What about negative samples?

Should they all be larger than positive samples (since OpenCV is going to paste positives on top of negatives to create the test images).

Should all be the same size?

Can they be arbitrary sizes?

Should they too have the same aspect ratio among themselves?

Ostler answered 15/3, 2014 at 4:30 Comment(0)
G
2

From OpenCV doc on Cascade Classifier Training:

Negative samples are taken from arbitrary images. These images must not contain detected objects. [...] Described images may be of different sizes. But each image should be (but not nessesarily) larger then a training window size, because these images are used to subsample negative image to the training size.

Glynisglynn answered 15/3, 2014 at 6:49 Comment(3)
In general though, what size makes sense for negative images? Are 320x400 images way too large? I mean, should I downsize my images to be at least close to the window size (40x40)?Ostler
@Ostler Making them close will be better for better sampling from the image.Glynisglynn
thanks! i hope you don't mind, but, do you have any idea about this follow-up problem? #22610642Ostler

© 2022 - 2024 — McMap. All rights reserved.