YonghaoHe / LFFD-A-Light-and-Fast-Face-Detector-for-Edge-Devices

A light and fast one class detection framework for edge devices. We provide face detector, head detector, pedestrian detector, vehicle detector......
MIT License
1.32k stars 329 forks source link

关于backbone修改 #41

Closed 791136190 closed 5 years ago

791136190 commented 5 years ago

你好,首先感谢你的开源。我们在你提供的backbone上进行了修改,把所有的卷积都修改为k=3,pad=1.这样的话,在计算感受野中心的时候,全部都是0.5了,取整为0的话,是否可行。还是说backbone设计的时候应该让感受野中心分布不同

YonghaoHe commented 5 years ago

完全可行,感受野的中心的起始位置在哪里都可以.

791136190 commented 5 years ago

感谢回复,如果增加pad参数,只用修改感受野中心和featuremap的大小就好了哈,其它的信息不需要修改?

YonghaoHe commented 5 years ago

对,输入尺寸变了,那么featuremap大小要变化,感受野中心只和网络结构本身有关系,和输入没关系.

791136190 commented 5 years ago

thks