I am using OpenCV , C++ and trying to detect object in images. Till now what i have done.
1. from small image(108x64) patch i extracted desired 6200(from one patch) feature. Then i wrote these feature in train.txt and test.txt file in svmLight format.
.2 Then I gave train.txt to svmLight and got model-file. Using this model file i can test classification accuracy which is 90% approx. I have done till now in Ubuntu and OpenCV and C++. and it's command line training and testing both.
3. Now I want to detect object from original images(480x640) using model-file generated during training.
BUT the problem is I don't know how to use model-file to detect object from original image(640x480). I want very basic/fundamental thing that how to use this model-file for detection using simple sliding window(108x64) and svmLight or (LatentSVM or cvSVM). Plz don't tell me that I should resize my original image(image pyramid ) for good accuracy and i should use ADM(Active Deformable Model/Snake). Don't tell me about local maxima suppression to remove extra rectangle box. Just tell me how to detect(step by step complete implementation) and get rectangle box. Thanks in advance , waiting for experts reply.