I've written a classifier and now want to apply it to detect images. My classifier's already got models for HoG features of some objects I'm interested in. I've got the sliding window thing going, which will slide across the image at different scales as well, and I can get the HoG features for each window. My questions is - what's the next step?
Is it really as simple as matching the model's HoG features against the features from the window? I understand that with integral images, there's a threshold value for each class (such as face
or not face
) and if the computed value of the window-generated image is close enough to the class's values and doesn't cross a threshold, then we say that we've got a match.
But how does it work with HoG features?