Detection-Guided Deep Learning-Based Model with Spatial Regularization for Lung Nodule Segmentation

Jiasen Zhang,Mingrui Yang,Weihong Guo,Brian A. Xavier,Michael Bolen,Xiaojuan Li
2024-10-26
Abstract:Lung cancer ranks as one of the leading causes of cancer diagnosis and is the foremost cause of cancer-related mortality worldwide. The early detection of lung nodules plays a pivotal role in improving outcomes for patients, as it enables timely and effective treatment interventions. The segmentation of lung nodules plays a critical role in aiding physicians in distinguishing between malignant and benign lesions. However, this task remains challenging due to the substantial variation in the shapes and sizes of lung nodules, and their frequent proximity to lung tissues, which complicates clear delineation. In this study, we introduce a novel model for segmenting lung nodules in computed tomography (CT) images, leveraging a deep learning framework that integrates segmentation and classification processes. This model is distinguished by its use of feature combination blocks, which facilitate the sharing of information between the segmentation and classification components. Additionally, we employ the classification outcomes as priors to refine the size estimation of the predicted nodules, integrating these with a spatial regularization technique to enhance precision. Furthermore, recognizing the challenges posed by limited training datasets, we have developed an optimal transfer learning strategy that freezes certain layers to further improve performance. The results show that our proposed model can capture the target nodules more accurately compared to other commonly used models. By applying transfer learning, the performance can be further improved, achieving a sensitivity score of 0.885 and a Dice score of 0.814.
Computer Vision and Pattern Recognition
What problem does this paper attempt to address?
The problem that this paper attempts to solve is to improve the segmentation accuracy of pulmonary nodules in computed tomography (CT) images. Specifically, the article focuses on the following challenges: 1. **Importance of early lung cancer detection**: Lung cancer is one of the leading causes of cancer - related deaths worldwide, and early detection of pulmonary nodules is crucial for improving patient prognosis. 2. **Complexity of the segmentation task**: Pulmonary nodules vary in shape and size and are often adjacent to lung tissue, which makes it difficult to accurately distinguish them. 3. **Limited data set**: The number of pulmonary nodule samples for training in clinical data sets is usually small, which challenges the generalization ability of the model. To solve these problems, the authors propose a new multi - task deep - learning model that combines segmentation and classification tasks and introduces a feature combination block, a spatial regularization technique, and a transfer - learning strategy to improve the accuracy of segmentation. ### Main contributions of the model include: 1. **Multi - task model**: Enhance segmentation performance by integrating classification information. 2. **Feature combination block**: Achieve efficient and flexible feature utilization and avoid unnecessary up - sampling and down - sampling. 3. **Soft - Thresholding Dynamic (STD) regularization**: Use classification results as prior information to improve the accuracy of segmentation prediction. 4. **Optimal transfer - learning strategy**: Pre - train from large - scale public data sets and then fine - tune on smaller clinical data sets to make full use of limited data resources. These methods work together to make the model perform well in the pulmonary nodule segmentation task. Experimental results show that its sensitivity score is 0.885 and the Dice coefficient is 0.814, which is better than other commonly used models. ### Related formulas - **Variational interpretation of the Sigmoid function**: \[ S_i g (u) = \arg \min_{0 \leq x \leq 1} -\langle u, x \rangle + \varepsilon \langle x, \ln x \rangle + \varepsilon \langle (1 - x), \ln (1 - x) \rangle \] - **STD regularization optimization problem including classification output**: \[ S_i g_{prop} (u) = \arg \min_{0 \leq x \leq 1} -\langle u, x \rangle + \varepsilon \langle x, \ln x \rangle + \varepsilon \langle (1 - x), \ln (1 - x) \rangle + \lambda_1 \langle x, k_\sigma * (1 - x) \rangle + \lambda_2 (1 - c) \langle I, x \rangle \] Through these methods, the model not only improves the accuracy of pulmonary nodule segmentation but also effectively reduces false positives and avoids misidentifying other tissues as nodules.