Source-linked AI summary

Cycle Consistent Adversarial Denoising Network for Multiphase Coronary CT Angiography

Eunhee Kang, Hyun Jung Koo, Dong Hyun Yang, Joon Bum Seo, Jong Chul Ye

arXiv:1806.09748v3cs.CVcs.AIcs.LGstat.ML

TL;DR

Low-dose phases in multiphase coronary CTA are noisy, while supervised training is hindered by the lack of exactly matched low- and routine-dose images. The paper proposes a cycle-consistent adversarial denoising network with cyclic consistency and identity loss, reporting reduced noise, preserved texture and edges, no artificial features, and improved diagnostic quality.

  • Problem

    Low-dose coronary CTA phases have degraded image quality, while exactly matched low- and routine-dose images are difficult to obtain for supervised learning.

  • Method

    The method trains inverse mappings between low- and routine-dose cardiac-phase domains using adversarial, cyclic-consistency, and identity losses.

  • Results

    The proposed method reduces noise while maintaining texture and edge information and does not create artificial features.

  • Takeaways & Limitations

    The method significantly increases diagnostic quality for low-dose coronary CTA images.

  • Takeaways & Limitations

    The authors acknowledge limitations of the present studies, but the supplied passage does not specify their nature.

Abstract

from arXiv · show

In coronary CT angiography, a series of CT images are taken at different levels of radiation dose during the examination. Although this reduces the total radiation dose, the image quality during the low-dose phases is significantly degraded. To address this problem, here we propose a novel semi-supervised learning technique that can remove the noises of the CT images obtained in the low-dose phases by learning from the CT images in the routine dose phases. Although a supervised learning approach is not possible due to the differences in the underlying heart structure in two phases, the images in the two phases are closely related so that we propose a cycle-consistent adversarial denoising network to learn the non-degenerate mapping between the low and high dose cardiac phases. Experimental results showed that the proposed method effectively reduces the noise in the low-dose CT image while the preserving detailed texture and edge information. Moreover, thanks to the cyclic consistency and identity loss, the proposed network does not create any artificial features that are not present in the input images. Visual grading and quality evaluation also confirm that the proposed method provides significant improvement in diagnostic quality.

I. INTRODUCTION

Multiphase coronary CTA reduces radiation dose but produces low-dose images with higher noise and varying contrast, while matched training pairs are difficult to obtain. The proposed cycle-consistent adversarial approach exploits correspondence between cardiac phases to denoise low-dose images while preserving image content.

  • Clinical motivation: Multiphase acquisition remains important because different cardiac phases may better reveal disease, valve abnormalities, or myocardial motion.The paper notes that cardiac motion information can be essential for evaluating cardiac function.
  • Clinical motivation: Multiphase tube-current modulation reduces total radiation dose but introduces noise and different contrast levels across cardiac phases.Clinical protocols obtain at least one routine-dose phase that can help radiologists interpret low-dose phases.
  • Existing approaches: Conventional MBIR methods address low-dose noise but require relatively long reconstruction times because of iterative forward and back projections.Deep learning methods learn image statistics directly from data and can enable real-time reconstruction after training.
  • Limitations of existing training data: Supervised denoising is difficult because matched low- and routine-dose images are hard to obtain without additional radiation or motion-corrupted acquisitions.Consequently, many studies use vendor-provided simulated low-dose data, whose noise patterns may differ from real acquisitions and bias training.
  • Existing approaches: GAN-based denoising can match routine-dose image distributions, but mode collapse may generate features absent from the input and fail to preserve meaningful pairing.GAN mode collapse can produce limited or identical outputs regardless of the input.
  • Proposed approach: The proposed network trains inverse mappings between low- and routine-dose domains using cyclic consistency and identity loss.The inverse path favors one-to-one correspondence, while identity loss constrains outputs in the target domain.
  • Reported outcome: Experimental results indicate robustness to cardiac motion and contrast changes without creating artificial features.The network generates denoised samples from noisy inputs rather than random noise, reducing the likelihood of mode collapse.

II. THEORY

The framework models low-dose and routine-dose CT as related image domains connected by two generators and two adversarial discriminators. It jointly trains these networks with adversarial, cyclic, and identity losses.

  • Low-dose CT is represented as domain A, while routine-dose CT is represented as domain B with distributions P_A and P_B.
  • Generators G_AB and G_BA map images between the low-dose and routine-dose domains in opposite directions.
  • The framework contains two generators, G_AB and G_BA, and two discriminators, D_A and D_B.
  • Discriminators D_A and D_B distinguish measured input images from synthesized images produced by the generators.
  • Generators and discriminators are trained simultaneously by optimizing an overall loss combining adversarial, cyclic, and identity terms.

II.A. Loss formulation

The loss formulation combines adversarial learning with least-squares stabilization to translate between low-dose and routine-dose CT domains. The adversarial objectives train both generator–discriminator directions.

  • II.A.1. Adversarial loss: G_AB and D_B are trained through a min-max adversarial objective derived from the original GAN formulation.
  • II.A.1. Adversarial loss: The adversarial loss trains G_AB to make denoised low-dose images resemble routine-dose images while D_B distinguishes generated from routine-dose images.
  • II.A.1. Adversarial loss: The original adversarial loss was unstable during training, so its log-likelihood function was replaced with a least-squares loss.
  • II.A.1. Adversarial loss: The revised formulation expresses training as two minimization problems based on the least-squares GAN objective.
  • II.A.1. Adversarial loss: The adversarial loss guides the generator toward denoised images classified as real routine-dose images.
  • II.A.1. Adversarial loss: The discriminator simultaneously learns to distinguish denoised images from routine-dose images.
  • II.A.1. Adversarial loss: A corresponding adversarial loss is applied to G_BA, which generates noisy CT images in the reverse domain direction.

II.A.2. Cyclic loss

Adversarial training alone does not ensure inverse mappings or preservation of clean inputs. Cyclic and identity losses constrain the generators to reconstruct inputs and avoid altering images already in the target domain.

  • II.A.2. Cyclic loss: Adversarial losses produce realistic denoised and noisy images but do not guarantee that the two generators form an inverse relation.
  • II.A.2. Cyclic loss: The cyclic loss passes an image through both generators and penalizes deviation from the original input using the l1-norm.
  • II.A.2. Cyclic loss: The cyclic constraint encourages G_AB and G_BA to act as approximate inverses, including G_BA(G_AB(x_A)) ≈ x_A.
  • II.A.2. Cyclic loss: Multiphase CTA can contain dose-phase mismatches because arrhythmia changes the expected relationship between cardiac phase and dose modulation.
  • II.A.2. Cyclic loss: A systolic-phase image expected to be low dose may instead have full-dose noise characteristics after cardiac-cycle mismatch.
  • II.A.3. Identity loss: Identity loss trains G_AB and G_BA not to change inputs that are already clean or already at the low-dose level.
  • II.A.3. Identity loss: Identity constraints make correctly generated target-domain images fixed points of the generator.
  • II.A.3. Identity loss: The identity constraint is reported as important for avoiding artificial features.

II.B. Network architecture

The system uses optimized generator networks with concatenated multiscale representations and an end-to-end bypass connection, paired with PatchGAN-style discriminators. The study evaluates the approach on multiphase cardiac CT scans.

  • The two generator architectures are illustrated in Fig. 3 and are optimized for low-dose CT image denoising.
  • The generators process image inputs directly rather than prior-work wavelet-transform coefficients.
  • Each generator begins with 128 3×3 convolution kernels and uses six modules containing convolution, batch-normalization, ReLU, and bypass layers.
  • A concatenation layer combines module inputs with the last-module output to provide multiple signal representations and gradient paths.
  • The final convolution layer uses 15 sets of 3×3×128 kernels, followed by an end-to-end bypass connection for estimating the noise-free image.
  • The discriminators use a PatchGAN architecture with a 70×70 receptive field to classify image patches as real or synthesized.
  • The discriminator has five convolution layers and aggregates l2-loss over 56×56 patches, supporting arbitrarily sized images.
  • The study cohort included 50 CT scans of mitral valve prolapse patients and 50 CT scans of coronary artery disease patients.

III.B. Training details

The study used adversarial network training with specified optimization, scheduling, patch, and batch settings, then evaluated diagnostic image quality using radiologist visual grading across selected cardiac structures.

  • Optimization: Training minimized loss function (2) with λ = 10 and γ = 5 using ADAM optimization with β1 = 0.5 and β2 = 0.999.
  • Training schedule: The network was trained for 160 epochs, using learning rate 0.0002 for the first 100 epochs before linear decay to zero.Early stopping was performed at 160 epochs as a regularization measure.
  • Training configuration: Training used 56 × 56 patches and mini-batches of 10, with randomly Gaussian-initialized kernels and generator–discriminator updates at each iteration.
  • Preprocessing: Input low-dose and target routine-dose CT images were intensity-normalized, with inputs scaled to the range [−1, 1].

III.C.2. Quantitative analysis

Quantitative and qualitative experiments assessed noise, SNR, visual quality, cross-disease robustness, identity behavior, and comparison with ADMIRE across cardiac CT datasets.

  • Quantitative analysis: The evaluation measured image noise and SNR within four anatomical structures using structure-confined regions of interest.The structures were the ascending aorta, left ventricular cavity, left ventricular septum, and proximal right coronary artery.
  • Restoration quality: The proposed method reduced noise while preserving texture and edge information in low-dose cardiac CT images.
  • Robustness and artifact control: The method did not create artificial features and was robust across mitral valve prolapse and coronary artery disease cases.
  • Identity behavior: The generator GAB acted as the identity for target-domain images, including cases with noise levels similar to the target images.
  • Comparison with ADMIRE: Compared with ADMIRE, both methods reduced noise, but ADMIRE showed edge loss, over-smoothing, and remaining streaking artifacts that were not observed with the proposed method.

IV.B. Visual grading score and SNR analysis results

Visual grading and quantitative measurements both favored denoising CT images over original CT images, with one reported SNR comparison remaining nonsignificant.

  • Visual grading: All visual scores were significantly higher for denoising CT than original CT images (P < 0.001).
  • Noise and SNR: Image noise decreased and SNR significantly increased in denoising CT images (P < 0.05).
  • Noise and SNR: SNR changes in the left ventricular cavity were not statistically significant (P = 0.96).The left ventricular cavity used the largest region of interest and contained contrast-enhanced blood pool.

IV.C. Application to AAPM Data Set

On the AAPM dataset, the proposed unsupervised method was evaluated against supervised learning and ablated network variants, emphasizing denoising, edge preservation, and artifact avoidance.

  • Application to AAPM Data Set: The AAPM dataset contained abdominal CT images from ten patients, with eight patients used for training and validation and two for testing.
  • Application to AAPM Data Set: Training on AAPM data was unsupervised, with input and target images randomly selected from the entire dataset.
  • Comparison with supervised learning: The proposed unsupervised method produced better images than the supervised learning approach in Fig. 10(b), although some artifacts remained in other results.
  • Ablation analysis: All reconstruction results reduced noise and maintained edge information, whereas other methods generated structures absent from the input images.
  • Ablation analysis: Excluding identity loss and cyclic loss caused heart-shape deformation and removal of structures compared with the proposed method.
  • Ablation analysis: The experiments supported the importance of cyclic and identity losses because artificial features can confuse radiologists during diagnosis.

V. DISCUSSION

The discussion addresses GAN-related risks, training stability, and the method’s clinical practicality, while identifying important generalizability boundaries.

  • Training stability: LSGAN and cycle loss produced stable convergence during training, with LGAB and LDB approaching 0.25.The cyclic loss decreased steadily and converged, which the authors interpreted as evidence of well-done network training.
  • GAN limitations and safeguards: Cycle consistency and identity loss reduce mode collapse and prevent artificial features from appearing in outputs.The authors report no cases where outputs from distinct inputs were identical.
  • Limitations and generalizability: The study mainly evaluates multiphase CTA using data reconstructed with the same B26f cardiac kernel.Generalization to different kernels or organs remains unclear, and broader validation is required.
  • Clinical practicality: Extensive clinical evaluation is still required before major acquisition-protocol changes, whereas the proposed method retains current protocols.The authors describe this compatibility as more readily acceptable in the current clinical setting.
  • Clinical practicality: The approach enhances images within current acquisition protocols and does not require exactly matched low- and routine-dose image pairs.The authors position enhanced images as additional information for radiologists and note that matched clinical pairs are difficult to obtain.

VI. CONCLUSION

The paper proposes a cycle-consistent adversarial denoising network for multiphase coronary CT angiography that learns from high-dose cardiac phases without exactly matched image pairs. Experiments show reduced low-dose noise while preserving texture, edges, and diagnostic quality without changing routine-dose inputs.

  • VI. CONCLUSION: The proposed network denoises low-dose coronary CT images while maintaining texture and edge information.Experimental results confirmed this behavior for input low-dose CT images.
  • VI. CONCLUSION: Unlike supervised approaches, the network does not require exactly matched low- and routine-dose images.It learns image distributions from high-dose cardiac phases instead.
  • VI. CONCLUSION: Cyclic consistency and identity loss are used to prevent artificial features that are absent from the input image.The conclusion contrasts this design with GAN-based networks prone to generating artificial features.
  • VI. CONCLUSION: Routine-dose inputs remain unchanged, supporting that the algorithm correctly learned the noise.This behavior was reported when routine-dose images were used as inputs.
  • VI. CONCLUSION: Visual grading analysis confirmed a significant increase in diagnostic image quality.The authors also describe the method as effective and practicable.
  • VI. CONCLUSION: The method may be applicable to other CT acquisition protocols with dynamic tube current.This is presented as a potential broader application of the proposed approach.
Loading 1806.09748v3…