Question

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?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top