I am currently detecting heads in a CCTV image. I am using a HOG detector + SVM and I am using the sliding window technique to detect the heads. Of course, when I am scaling the image, I am having multiple detection/bounding boxes of the same head. I know that I have to use non-maxima suppression to choose the best one of them, and I have tried to follow the following link: http://quantombone.blogspot.com/2011/08/blazing-fast-nmsm-from-exemplar-svm.html
However, I cannot understand how to get the score for each sliding window. Can someone explain to me please? In other words, I have the bounding boxes pts and I know that I have to set an overlap of 0.5, but I do not have the score for each bounding box.