How to implement Faster R CNN object detector?

1 回表示 (過去 30 日間)
Jay
Jay 2017 年 6 月 20 日
回答済み: Birju Patel 2017 年 7 月 20 日
I am using
trainFasterRCNNObjectDetector
for the detection task. My ROIs in an image has single size((96*96*3) in (684*912) image size.) Although my object sizes very in a 96*96*3 image patch, I train my CNN such that it classifies the objects at the centres only.
In such a scenario, I want the anchors in RPN such that it detects foreground even for the smallest object at the centre(let's say objects with 60 diameters) so that it could be the part of the classification (It actually helps when two objects are overlapping each other, and one of them is slight off-center, I believe).
In such case I need might need three different anchorBox sizes(let's say 60,80,96). For such case how to decide
'BoxPyramidScale' Anchor box pyramid scale
and
'NumBoxPyramidLevels' Number of anchor box pyramid levels
I am quite confused in this two arguments. Thanks.

回答 (1 件)

Birju Patel
Birju Patel 2017 年 7 月 20 日
Hi Jay,
Because you have objects that have a single size, 96x96, you can set BoxPyramidScale to 1 and NumBoxPyramidLevels to 1.
BoxPyramidScale and NumBoxPyramidLevels control how the RPN anchor boxes are scaled up from the MinBoxSizes. These two parameters define a "box pyramid" where the MinBoxSizes define the smallest RPN anchor boxes, and each level of the pyramid contains scaled versions the boxes.
This lets you generate RPN anchors of different sizes, which enables Faster R-CNN to detect objects of different sizes.
HTH, Birju

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by