Deformable Convolutional Networks
Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li, Guodong Zhang, Han Hu, Yichen Wei
TL;DR
The paper tackles CNNs' difficulty in modeling geometric transformations by introducing deformable convolution and deformable RoI pooling. These modules learn dense spatial offsets from data, enabling adaptive receptive fields and deformable sampling that can replace standard components in existing architectures. Across semantic segmentation and object detection benchmarks (VOC, CityScapes, COCO), the approach yields meaningful accuracy gains with only modest computational overhead. Ablation studies confirm that learned offsets correlate with object size and that stacking deformable layers enhances performance, validating the method's effectiveness for complex visual tasks.
Abstract
Convolutional neural networks (CNNs) are inherently limited to model geometric transformations due to the fixed geometric structures in its building modules. In this work, we introduce two new modules to enhance the transformation modeling capacity of CNNs, namely, deformable convolution and deformable RoI pooling. Both are based on the idea of augmenting the spatial sampling locations in the modules with additional offsets and learning the offsets from target tasks, without additional supervision. The new modules can readily replace their plain counterparts in existing CNNs and can be easily trained end-to-end by standard back-propagation, giving rise to deformable convolutional networks. Extensive experiments validate the effectiveness of our approach on sophisticated vision tasks of object detection and semantic segmentation. The code would be released.
