Pedestrian Detection using Histogram of Gradients (HoG) and a Random Forests Classifier

This entry is part 1 of 1 in the series Pedestrian Detection

1,178 64×128 sized images of pedestrians (positive samples) and 4,530 of the same sized negative samples were extracted from the INRIA dataset and divided randomly into two to give a training set and a validation set. HoG features on the training images were used to train a Random Forests classifier. The number of trees was set to 100 and the maximum depth of each tree set to 5.

For detection, the search was carried out only over one scale (for testing purposes), on a separate set of images collected from the lab.

Completely un-optimized code on a Core-Two duo laptop already runs at 20 fps.

A First Attempt at Lane Detection

This entry is part 2 of 2 in the series Visual Localization Along Highways

Lane Detection after filtering the image with a filter that accentuates vertical lines of a certain width and then applying the Hough Transform.

Passing the output of the Hough Transform through a Kalman Filter for temporal smoothing is expected to improve the consistency of lane detection.