0%

Reading Note: Pushing the Limits of Deep CNNs for Pedestrian Detection

TITLE: Pushing the Limits of Deep CNNs for Pedestrian Detection

AUTHER: Qichang Hu, Peng Wang, Chunhua Shen, Anton van den Hengel, Fatih Porikli

ASSOCIATION: The University of Adelaide, NICTA

FROM: arXiv:1603.04525

CONTRIBUTIONS

  1. An observation is obtained that fine-tuning a DCNN model using pedestrain data is critically important.
  2. Another observation is that proper bootstrapping is also of importance.
  3. An ensemble of boosted decision forests is trained using features from multiple layers, which brings effectiveness.
  4. Semantic pixel labelling can benefit pedestrian detection.

METHOD

Detector

  1. Three boosted decision forests are trained and used as pedestrian detectors. One of the BDF (noted as CFM3) is trained from the feature map of Conv3-3 in VGG16, which has a downsampling ratio of 4. The second BDF (noted as CFM4) is trained from Conv4-3 and the last one (noted as CFM5) is trained from Conv5-1.
  2. CFM3 is used in a slide window (with 4 px stepsize) manner to generate high potential proposals.
  3. the high potential proposals are passed to CFM4 and CFM5. The three scores are averaged as final score.

Combining Pixel Labelling

  1. A pixel labelling score map is generated using a semantic segmentation network.
  2. A weighted mask (generated by averaging ground truth annotation of semantic segmentation) is applied to the region of a proposal of the score map to generate the weighted sum of pixel scores.
  3. The weighted sum and the detector score for the proposal are aggregated as the final score.

SOME DETAILS

Fine-tuning DCNNs with Bootstrapped Data. The input size is set to 128*64, which means the output size for CFM3 is 32x16, CFM4 is 16x8 and CFM5 is 8x4. The fully connected layers have 2048 neurons. In each mini-batch 32 positive samples and 96 negative samples are included. 30k positive and 90k negative samples are used to train the network. The network is first finetuned using the data collected by ACF detector. And then it is further finetuned using the hard negatives.

ADVANTAGES

  1. Multiple feature maps from one network are used, which shares much computation.
  2. Traditional features and learning method are combined with DL.
  3. Several kinds of features are used and they are complemantary.

DISADVANTAGES

  1. It is too slow because multiple scales of images need to be filtered by a CNN.