You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apply your classification/verification system to implement a pedestrian detector
Two important components
A sliding window detector. (Based on Prac 6)
Crop the image at every location and use the classifier to tell if that image region contains a face. By scanning every location on the full image, it will detect all instances of faces in that image.
In order to detect faces at multiple sizes, our sliding window detector should run at multiple scales (will require resizing image)
Non-maxima suppression. (Prac 6)
Overlapping detections are a common problem. NMS removes overlapping detection to improve performance. It keeps best detections in each region by selecting the strongest responses.
Run your detector on the 4 files imX.jpg, and evaluate its performance
Calculate the performance of our detector (TP, FP, TN, FN, etc…)
Generate output images with bounding boxes
Reflect and explain the results that you have obtained
Why and when it fails?
About
Group Assignment based upon a pedestrian detector for the Visual Analytics course at Queen's University Belfast.