The receptive field (RF) is the region of the original input visible to one output pixel, with recurrence
RFl=RFl−1+(kl−1)∏i=1l−1si, where
kl is the kernel size of layer
l and
si the stride of layer
i — the stride product shows that earlier downsampling amplifies later receptive fields. With all strides 1 it simplifies to
RFl=RFl−1+kl−1; e.g. three stacked 3×3 (stride 1) layers reach RF 7, and if the first layer has stride 2, the third layer reaches
7+2×2×1=11. Conv FLOPs: each output pixel performs
khkwCin multiply-adds (1 multiply + 1 add, counted as 2), totalling
2HoutWoutkhkwCinCout; e.g. a 3×3 conv with 64→128 channels on 224×224 input:
2×224×224×9×64×128≈7.4×109, i.e. ~7.4 GFLOPs.