paper-with-me

Papers

LDConv: Linear deformable convolution for improving convolutional neural networks

2023-11-20 · Xin Zhang, Yingze Song, Tingting Song, Degang Yang, Yichen Ye, Jie zhou, Liming Zhang

Neural networks based on convolutional operations have achieved remarkable results in the field of deep learning, but there are two inherent flaws in standard convolutional operations. On the one hand, the convolution operation is confined to a local window, so it cannot capture information from other locations, and its sampled shapes is fixed. On the other hand, the size of the convolutional kernel are fixed to k $\times$ k, which is a fixed square shape, and the number of parameters tends to grow squarely with size. Although Deformable Convolution (Deformable Conv) address the problem of fixed sampling of standard convolutions, the number of parameters also tends to grow in a squared manner. In response to the above questions, the Linear Deformable Convolution (LDConv) is explored in this work, which gives the convolution kernel an arbitrary number of parameters and arbitrary sampled shapes to provide richer options for the trade-off between network overhead and performance. In LDConv, a novel coordinate generation algorithm is defined to generate different initial sampled positions for convolutional kernels of arbitrary size. To adapt to changing targets, offsets are introduced to adjust the shape of the samples at each position. LDConv corrects the growth trend of the number of parameters for standard convolution and Deformable Conv to a linear growth. Moreover, it completes the process of efficient feature extraction by irregular convolutional operations and brings more exploration options for convolutional sampled shapes. Object detection experiments on representative datasets COCO2017, VOC 7+12, and VisDrone-DET2021 fully demonstrate the advantages of LDConv. LDConv is a plug-and-play convolutional operation that can replace the convolutional operation to improve network performance. The code for the relevant tasks can be found at https://github.com/CV-ZhangXin/LDConv.

📄 PDF Abstract BibTeX arXiv:2311.11587

Code (2)

cv-zhangxin/akconv 공식 구현 pytorch
cv-zhangxin/ldconv 공식 구현 pytorch

Tasks

object-detectionObject Detection

Methods 이 논문이 사용한 방법론

Deformable Convolution Deformable convolutions add 2D offsets to the regular grid sampling locations in the standard convolution. It enables free…
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…

Similar Papers 제목 키워드 기반

Linear and Deformable Image Registration with 3D Convolutional Neural Networks

2018-09-13 · Stergios Christodoulidis, Mihir Sahasrabudhe, Maria Vakalopoulou, Guillaume Chassagnon 외

Image registration and in particular deformable registration methods are pillars of medical imaging. Inspired by the recent advances in deep learning, we propose in this paper, a novel convolutional neural network archit…

General ClassificationImage Registration

Deformable Convolutional Networks

2017-03-17 · ICCV 2017 10 · Jifeng Dai, Haozhi Qi, Yuwen Xiong, Yi Li 외

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 tran…

Object DetectionSemantic SegmentationVessel Detection

An Efficient Accelerator Design Methodology for Deformable Convolutional Networks

2020-06-09 · Saehyun Ahn, Jung-Woo Chang, Suk-Ju Kang

Deformable convolutional networks have demonstrated outstanding performance in object recognition tasks with an effective feature extraction. Unlike standard convolution, the deformable convolution decides the receptive …

Object Recognition

3D Deformable Convolutions for MRI classification

2019-11-05 · Marina Pominova, Ekaterina Kondrateva, Maksim Sharaev, Sergey Pavlov 외

Deep learning convolutional neural networks have proved to be a powerful tool for MRI analysis. In current work, we explore the potential of the deformable convolutional deep neural network layers for MRI data classifica…

ClassificationGeneral ClassificationMRI classification

Deformable Convolution Module with Globally Learned Relative Offsets for Fundus Vessel Segmentation

2025-07-24 · Lexuan Zhu, Yuxuan Li, Yuning Ren arxiv

Deformable convolution can adaptively change the shape of convolution kernel by learning offsets to deal with complex shape features. We propose a novel plug and play deformable convolutional module that uses attention a…