How to implement detectMultiscale function for hog feature detection with neural network classifier?
I m using neural network implementation of opencv as classifier for training. There is provision of using detectMultiscale of hog with SVM. Instead of SVM I want to use neural network model. Any suggestions on how to achieve this?
i don't think, this is a good idea.
inside detectMultiScale(), a sliding window is applied x1000 times on multiple scales. whith an SVM, the test boils down to a single dot-product (between the window and the support vector) per test, while with an ANN, you have to traverse your whole network, so that will be terribly slow.
@berak: Yeah it would be slow, but the accuracy i want is not achieved through SVM. With neural network, I m getting good accuracy. So any other method through which i can detect object throughout the frame, some method similar as detectMultiscale()?