Ask Your Question

Revision history [back]

Retrieve GPU HOG detector scores

Hi everyone, I'm using HOG detector to detect pedestrian

HOGDescriptor hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector());
hog.detectMultiScale(frame, detections, detectionScores, hit_threshold, Size(8,8), Size(32,32), 1.05, group_threshold);

Now I want to use the GPU version and to retrieve the detection scores, but I don't found any implementation or documentation about this. Is there a way to retrieve the detection scores for each sample?