zhaoweicai / mscnn

Caffe implementation of our multi-scale object detection framework
404 stars 211 forks source link

question about the anchor size #84

Open JayYangSS opened 7 years ago

JayYangSS commented 7 years ago

Hi, I'm confused that can I set the anchor size into different width/height ratio in different sub-detection network? For example, can I set the anchor size as 40by40 in det-8 and 80by160 in det-16? @zhaoweicai

zhaoweicai commented 7 years ago

Hi @JayYangSS Yes, you can do whatever sizes you want to set, like in Faster-RCNN paper. However, in MS-CNN, we want to have a more consistent match between the receptive fields and objects. There is no constraints to use other anchor sizes.

JayYangSS commented 7 years ago

Thanks for your reply! @zhaoweicai