caffe-fast-rcnn icon indicating copy to clipboard operation
caffe-fast-rcnn copied to clipboard

ROI Pooling Layer - Help understanding RP Param

Open soulslicer opened this issue 6 years ago • 1 comments

roi_pooling_param {
    pooled_w: 7
    pooled_h: 7
    spatial_scale: 0.0625 # 1/16
  }

Looking at the layer, it seems to resize the output to [N, Channels, 7, 7] where N is the number of bounding boxes

soulslicer avatar Jul 06 '18 16:07 soulslicer

Its not resize but a max pool. The ROI Image is divided in 7x7 grid and maxpool in each grid.

aashish-kumar avatar Mar 07 '19 09:03 aashish-kumar