문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top