We begin by training an SVM on positive and negative face features which are gathered from a Histogram of Oriented Gradients descriptor. For each image of the test set we use a moving window algorithm with a HOG descriptor at several different scales of the image to detect faces at different sizes.
A HOG descriptor of 12x12 with bin size of 8 was used to gather the features of from the known faces. Several different sizes for the HOG descriptor were tried with 12x12 having optimal results. The pipeline was setup in a cascade form where successive levels of the cascade used hard negatives to adjust the SVM. The test images were passed through a HOG detector on a per patch basis as HOG does a moving window within its algorithm.
The HOG implementation is from one provided from the MATLAB code sharing site and was chosen as HOG's precision potential is higher than sifts due to the fact that there is no normalization within the algorithm so the descriptors are more precise. If the time requirement was not so immense we could have tried smaller values for the pipeline parameters to increase the APR.