【发布时间】:2016-06-05 14:01:05
【问题描述】:
我正在阅读有关使用 CNN(卷积神经网络)进行对象检测的论文。
Rich feature hierarchies for accurate object detection and semantic segmentation
这是关于感受野的引述:
The pool5 feature map is 6x6x256 = 9216 dimensional. Ignoring boundary effects, each pool5 unit has a receptive field of 195x195 pixels in the original 227x227 pixel input. A central pool5 unit has a nearly global view,
while one near the edge has a smaller, clipped support.
我的问题是:
- 感受野的定义是什么?
- 他们如何计算感受野的大小和位置?
- 我们如何使用 caffe/pycaffe 计算感受野的边界矩形?
【问题讨论】:
-
这里有一个感受野在线计算器:fomoro.com/tools/receptive-fields
-
rubikscode.net/2020/05/18/… 了解计算背后的数学的好资源
标签: deep-learning computer-vision receptive-field