Anatomy-Guided Residual Motion Diffusion for Controllable 4D Cardiac MRI Synthesis


Abstract

Developing robust artificial intelligence models for 4D (3D + time) medical imaging is constrained by limited annotated data, inter-device domain shifts, and privacy restrictions. To address this, we propose a 4D controllable generative framework for anatomically consistent data augmentation. A semi-supervised variational autoencoder learns a compact latent representation of anatomical volumes while jointly predicting aligned segmentation masks in a unified framework. Anatomical structure is then disentangled from temporal dynamics through a cascaded latent diffusion model (LDM). A static LDM generates subject-specific anatomy conditioned on clinical priors (diagnosis and volumes measures) and a subsequent motion LDM estimates residual latent motions, ensuring strict temporal coherence across the 4D sequence. The proposed approach was evaluated on cine cardiac MRI as a representative 4D imaging application. Experiments across multiple datasets demonstrate high controllability of static anatomy (Pearson \(r > 0.8\)) and strong temporal coherence (FVD = \(288.08\)). In cross-vendor generalization experiments, augmenting training sets with synthetic 4D sequences significantly improves downstream segmentation performance. Using nnU-Net, the proposed augmentation strategy improves the average Dice score by 1.4% and reduces the Hausdorff Distance by 3.0 mm compared to training on real data alone, for the left ventricle, Dice improves by 2.8% with a 5.4 mm reduction in boundary error. Overall, this framework provides a scalable and controllable solution for 4D medical image synthesis, supporting the development of more robust models with limited annotations and cross-vendor variability. Code available on https://github.com/cyiheng/4DCardiacMRISynthesis.

1 Introduction↩︎

Cardiovascular diseases remain the leading cause of mortality worldwide and require accurate diagnosis. Cine cardiac magnetic resonance (CMR) imaging is the gold standard for assessing cardiac function, providing high-resolution spatiotemporal data on ventricular volumes and myocardial wall motion. Recent advances in deep learning (DL) have improved automated CMR analysis [1], data acquisition and sharing remain limited by privacy regulations, resulting in small multi-center datasets and domain shifts that impair generalization [2], [3]. DL methods also rely on large, expertly annotated datasets, a constraint that is particularly critical for 4D (3D + time) data, where full-cycle delineation is labor-intensive and time-consuming [4]. Consequently, annotations are often restricted to end-diastolic (ED) and end-systolic (ES) phases, discarding substantial spatiotemporal information [1], [4].

Generative modeling offers a potential solution through realistic data synthesis [5], [6]. Medical image generation relies on both physics-based simulations and data-driven approaches, with modern deep generative models learning high-dimensional statistical distributions directly from data [7][9]. However, 4D cine CMR generation remains challenging due to high dimensionality and the need for physiologically plausible cardiac motion. Early GAN-based methods either model cine dynamics via latent trajectories with limited anatomical control or rely on label-conditioned synthesis that does not scale to volumetric 4D data without dense supervision [10], [11]. More recent diffusion-based approaches improve perceptual fidelity and enable conditional generation using clinical attributes or textual prompts [12], [13]. However, most existing methods combine anatomical structures and temporal dynamics in a single generative process, limiting independent controllability and long-term consistency. Additionally, many approaches either focus solely on intensity generation without paired segmentation masks or depend on densely annotated, often proprietary datasets, limiting scalability, reproducibility, and cross-institutional validation [13], [14]. Despite promising visual realism, current generative models remain insufficient for producing anatomically controllable, label-aware 4D cine CMR data suitable for robust downstream learning tasks.

In this work, we bridge these gaps by proposing a robust 4D generation pipeline for cine CMR. We simplify the 4D synthesis problem by decoupling it into static anatomical generation and residual latent motion prediction. Our contribution is threefold:

  • We introduce a semi-supervised variational autoencoder (VAE) framework that jointly models anatomical structure and semantic information from partially labeled datasets, enabling the direct generation of paired intensity volumes and segmentation masks without dense manual annotations for all samples.

  • We propose a residual latent motion model that characterizes cardiac dynamics as residual trajectories within the latent space. The model decouples static anatomy from cardiac dynamics, generating temporally coherent 4D cine sequences while preserving anatomical consistency.

  • We demonstrate that adding synthetic data improves the cross-vendor generalization of cardiac segmentation models by reducing left ventricle (LV), right ventricle (RV), and myocardium (MYO) boundary errors, enabling reliable clinical quantification of ventricular volumes and ejection fraction.

Figure 1: Overview of the proposed framework. Blue panels: VAE compression, deterministic residual motion extraction, and cascaded LDM training. Green panel: the static LDM generates base anatomy \hat{z}_{ED} from conditions \mathbf{c}, while the motion LDM predicts temporal residuals \hat{m}_t. These are aggregated (\hat{z}_{ED} + \hat{m}_t) and passed through the VAE decoders to produce the final 4D volumes and inherently aligned segmentation masks.

2 Methods↩︎

Let \(\mathbf{x} \in \mathbb{R}^{H \times W \times D \times T}\) denote a 4D cardiac MRI sequence with \(T\) frames. We model \(p(\mathbf{x} | \mathbf{c})\) conditioned on clinical priors \(\mathbf{c}\) (e.g., diagnosis, volumetric indices) through three components: (1) a semi-supervised VAE for latent compression, (2) a static latent diffusion model (LDM) for anatomical generation, and (3) a residual motion LDM for temporal dynamics (Figure 1).

2.1 Semi-supervised Latent Representation↩︎

The input space is first map to a low-dimensional latent space \(\mathcal{Z}\). We use a 3D VAE-GAN with a shared encoder \(E\) and two decoders: an intensity reconstruction decoder \(D_{rec}\) and a segmentation decoder \(D_{seg}\). Given an input volume \(x\), the encoder produces a latent distribution \(z~\sim~E(x)\). The training objective is a composite loss that ensures reconstruction fidelity, latent regularization, semantic alignment, and textural realism:

\[\begin{align} \mathcal{L}_{VAE} &= \lambda_{pixel}\mathcal{L}_{pixel}(x, D_{rec}(z)) + \lambda_{KL}\mathcal{L}_{KL}(q(z|x)||p(z)) \\ &\quad + \mathbb{I}_{label} \cdot \lambda_{seg}\mathcal{L}_{seg}(y, D_{seg}(z)), \end{align}\] where \(\mathcal{L}_{pixel}\) includes \(L_1\), perceptual, and adversarial terms, \(\mathcal{L}_{KL}\) regularizes the latent posterior \(q(z|x)\) towards a standard Gaussian prior \(p(z)\) to facilitate valid sampling. The cross-entropy \(\mathcal{L}_{seg}\) is applied only when labeled data \(y\) are available (\(\mathbb{I}_{label} = 1\)), allowing the model to leverage both labeled and unlabeled datasets.

2.2 Static Anatomy Generation↩︎

We train a static LDM generates the ED latent base anatomy \(\hat{z}_{ED}\) conditioned on clinical priors \(\mathbf{c}\) (categorical diagnosis, slice count, and ED/ES/ejection fraction volumes). A Multi-Layer Perceptron (MLP) \(\tau\) projects \(\mathbf{c}\) to condition the LDM through cross-attention. To handle variable slice counts within a fixed latent resolution, a through-plane binary mask indicating valid slices is concatenated during training and sampling. This prevents the model from learning padded regions, ensuring center-cropped decoded volumes remain anatomically consistent without boundary artifacts.

2.3 Residual Motion Dynamics Generation↩︎

We model the temporal evolution of the cardiac cycle as a residual offset relative to the ED frame. For any time frame \(t\), we suppose that the latent representation \(z_t\) can be expressed as \(z_t = z_{ED} + m_t\), where \(m_t\) represents the residual latent motion. Motion modeling is performed in two stages: deterministic residual extraction and stochastic residual generation.

2.3.1 Learning the Residual Latent Motion Space.↩︎

A deterministic latent motion predictor \(M\) is trained to learn the residual mapping between paired frames \((z_{ED},z_t)\). The network predicts: \(\hat{m}_t = M(z_{ED},z_t)\) with \(\hat{z}_{t} = z_{ED} + \hat{m}_t\). To preserve high-frequency details and semantic integrity, the model is supervised in both latent and image space using: \[\mathcal{L}_{motion} = \lambda_{pixel}\mathcal{L}_{pixel}(x_{t}, D_{rec}(\hat{z}_{t})) + \mathbb{I}_{label} \cdot \lambda_{seg}\mathcal{L}_{seg} + \mathcal{L}_{reg}\] The regularization term \[\mathcal{L}_{reg} = \lambda_{sparse} | \hat{m} |^2_2 + \lambda_{identity} | M(z_{ED}, z_{ED}) |_1\] encourages minimal latent motion energy and enforces an identity constraint. This ensures zero residuals for identical input frames and prevents autoencoding behavior, forcing \(M\) to learn true relative motion to preserve anatomical consistency.

2.3.2 Motion Diffusion Model.↩︎

Once trained, the frozen \(M\) extracts residuals \(m_t\) to train a conditional motion LDM. This LDM is conditioned on (i) the static reference \(z_{ED}\) through concatenation, (ii) the clinical embeddings \(\tau(\mathbf{c})\), and (iii) a sinusoidal time embeddings \(\rho(t)\) representing the normalized cardiac phase.

During inference, the pipeline samples \(\hat{z}_{ED}\) from the static LDM, then samples a sequence of residuals \(\{\hat{m}_t\}^T_{t=1}\) from the motion LDM. These residuals are aggregated and passed through the pre-trained VAE decoders to jointly reconstruct the final 4D intensity sequence and its inherently aligned segmentation masks.

3 Experiments and Results↩︎

3.0.1 Datasets.↩︎

Our framework was trained on a combined dataset of 956 patients, including 100 patients with annotations at ED and ES from the ACDC dataset [1] and 856 unlabeled patients from the Kaggle Data Science Bowl (DSB) dataset [15]. The semi-supervised VAE was trained using all cases for reconstruction, while segmentation supervision was provided exclusively by the 100 labeled ACDC cases. Internal evaluation was performed on 50 patients of the ACDC test set and a held-out subset of 50 patients from DSB dataset. Cross-vendor generalization was assessed using an external test sets: 134 and 157 patients from the M&Ms and M&Ms2, respectively [16], [17].

3.0.2 Implementation details.↩︎

All models were implemented in PyTorch using a single NVIDIA RTX 4090 GPU. The images were resampled at a fixed spacing of \(1 \times 1 \times 10\) mm and centrally cropped to \(192 \times 192 \times Z\) where \(Z \in [5,16]\) denotes the number of slices. Intensities were clipped to the \([0.5, 99.5]\) percentiles and normalized to the range \([-1, 1]\). To handle variable slice counts in \(Z\), volumes are padded using symmetric edge replication. This preserves boundary intensities, avoiding artificial artifacts and bias in the latent space, while ensuring anatomically consistent borders without introducing unintended intensity changes during training.

The semi-supervised VAE was trained for 100,000 steps using AdamW (\(lr = 10^{-4}\)), with \(\lambda_{seg} = 20.0\) and \(\lambda_{KL} = 10^{-7}\). The reconstruction loss combined \(L_1\), perceptual, and adversarial terms weighted at 1.0, 0.3, and 0.1, respectively. The latent motion predictor was trained for 100,000 steps (AdamW, \(lr = 2 \times 10^{-4}\)) with \(\lambda_{seg} = 10.0\), \(\lambda_{sparse} = 0.01\), \(\lambda_{identity} = 1.0\), and a reconstruction loss weighted at 2.0, 1.0, and 0.01 (\(L_1\), perceptual, adversarial). Both LDM were trained for 200,000 steps using an 8-bit AdamW optimizer (\(lr = 2 \times 10^{-5}\)) and DDIM sampling with 50 inference steps. Static LDM training included random affine scaling and pseudo-ED sampling, with clinical volumes dynamically recomputed using frozen VAE segmentation outputs.

3.0.3 Evaluation metrics.↩︎

We evaluate the framework based on perceptual quality, anatomical controllability, and utility for downstream segmentation task. Perceptual fidelity and temporal coherence are quantified using the Fréchet Inception Distance (FID) and Fréchet Video Distance (FVD), respectively. FID is computed on static ED volumes, while FVD is evaluated on full cine sequences. FID is computed using 10-fold bootstrapping with 2,000 generated volumes and 956 real training cases. For FVD, 1,000 synthetic 4D sequences were unpacked along the longitudinal (z) axis into temporal 2D+t video clips and compared against real training clips. FVD uncertainty was quantified via 100-iteration non-parametric bootstrap resampling at the video level. Anatomical controllability was evaluated by calculating the Pearson correlation between the clinical priors input and synthetic measurements across 20 cases per pathology using three classifier-free guidance (CFG) scales. To assess practical clinical utility, we use semantic segmentation as a representative downstream task to rigorously validate that synthetic data augmentation preserves anatomical boundaries and enhances cross-domain robustness. Segmentation models (nnU-Net [18], UNETR [19], and Swin-UNETR [20]) are trained using 900 synthetic ED/ES volume pairs and evaluated using Dice Similarity Coefficient (DSC) and 95% Hausdorff Distance (HD), reported as mean and standard deviation over five runs on internal (ACDC) and external (M&Ms, M&Ms2) test sets.

3.0.4 Generation fidelity.↩︎

Figure 2: Example of synthetic volumes and segmentation across pathological classes.

The Figure 2 displays synthetic sequences for abnormal right ventricle (ARV) and hypertrophic cardiomyopathy (HCM) pathologies (full motion available in the Supplementary Material). The framework reproduces anatomical features, such as myocardial thickening in HCM, with segmentation masks that remain aligned with generated intensities across the cardiac cycle. The difference magnitude maps demonstrate substantial regional changes. Quantitative perceptual metrics support visual assessment, with a slice-wise FID of \(72.21 \pm 0.95\) and FVD of \(288.08 \pm 3.63\). These results suggest that the generated sequences exhibit realistic intensity distributions and stable temporal evolution.

Table 1: Segmentation performance using nnU-Net as backbone.
Dataset Data DSC HD
RV MYO LV RV MYO LV
nnU-Net 91.02 ± 0.08 88.90 ± 0.04 93.18 ± 0.17 4.95 ± 0.13 2.87 ± 0.09 3.37 ± 0.33
ACDC +Synth ED 90.84 ± 0.09 88.34 ± 0.02 93.23 ± 0.05 4.15 ± 0.34 2.78 ± 0.04 3.00 ± 0.06
+Synth ED/ES 90.95 ± 0.11 88.74 ± 0.05 93.90 ± 0.06 4.12 ± 0.29 2.70 ± 0.06 2.77 ± 0.09
nnU-Net 87.08 ± 0.24 81.83 ± 0.14 84.87 ± 0.78 7.64 ± 0.47 8.60 ± 0.36 14.57 ± 0.97
M&Ms +Synth ED 87.55 ± 0.07 82.34 ± 0.10 87.54 ± 0.30 6.62 ± 0.14 6.59 ± 0.16 8.99 ± 0.50
+Synth ED/ES 87.44 ± 0.18 82.52 ± 0.10 88.27 ± 0.18 6.55 ± 0.28 6.49 ± 0.14 8.45 ± 0.36
nnU-Net 85.93 ± 0.27 80.00 ± 0.15 86.21 ± 0.49 10.44 ± 0.81 9.00 ± 0.22 13.71 ± 1.10
M&Ms2 +Synth ED 86.33 ± 0.16 80.57 ± 0.15 88.09 ± 0.12 9.14 ± 0.11 6.78 ± 0.12 9.44 ± 0.25
+Synth ED/ES 86.60 ± 0.42 81.12 ± 0.78 88.35 ± 0.19 9.12 ± 1.29 6.77 ± 0.25 8.98 ± 0.41
Figure 3: Correlation between input clinical volume priors and measured synthetic volumes across different pathologies and CFG scales.
Table 2: Segmentation performance using UNETR and Swin-UNETR as backbone.
Dataset Data DSC HD
3-8 RV MYO LV RV MYO LV
ACDC UNETR 72.53 ± 0.81 68.99 ± 0.42 83.11 ± 0.32 19.02 ± 0.77 7.87 ± 0.09 8.55 ± 0.35
+Synth ED/ES 77.73 ± 0.56 76.43 ± 0.39 87.00 ± 0.38 14.36 ± 1.25 6.44 ± 0.25 6.82 ± 0.35
Swin-UNETR 79.10 ± 0.26 75.12 ± 0.28 86.96 ± 0.26 12.70 ± 1.03 6.63 ± 0.21 7.21 ± 0.52
+Synth ED/ES 82.70 ± 0.59 81.27 ± 0.52 89.88 ± 0.38 9.57 ± 0.25 5.12 ± 0.29 5.59 ± 0.56
M&Ms UNETR 52.36 ± 4.52 50.31 ± 6.30 64.23 ± 6.43 37.06 ± 4.49 31.88 ± 4.26 35.20 ± 1.10
+Synth ED/ES 66.55 ± 0.86 65.99 ± 1.23 76.38 ± 1.62 20.26 ± 0.73 16.06 ± 0.59 18.92 ± 0.68
Swin-UNETR 56.62 ± 1.33 60.70 ± 0.71 72.47 ± 0.93 50.33 ± 2.74 30.22 ± 2.04 35.40 ± 1.83
+Synth ED/ES 73.73 ± 0.57 74.48 ± 1.26 82.42 ± 0.25 15.95 ± 1.96 10.56 ± 0.12 13.94 ± 0.98
M&Ms2 UNETR 52.17 ± 2.62 55.16 ± 2.71 71.71 ± 2.81 31.55 ± 3.41 20.38 ± 2.23 22.80 ± 1.14
+Synth ED/ES 65.98 ± 0.93 65.69 ± 0.42 80.16 ± 0.47 21.14 ± 1.07 13.06 ± 0.22 14.66 ± 0.83
Swin-UNETR 52.75 ± 2.26 59.12 ± 0.52 76.33 ± 0.84 41.07 ± 2.83 19.93 ± 0.87 21.78 ± 1.26
+Synth ED/ES 62.66 ± 2.04 68.58 ± 0.70 81.96 ± 0.30 22.90 ± 0.99 11.52 ± 0.25 14.41 ± 1.00

Figure 3 evaluates the ability of the proposed framework to generate specific cardiac volumes based on clinical priors. Pearson correlation coefficients vary across pathologies and guidance scales, ranging from moderate to strong (\(r \in [0.66,0.94]\)), with peak performance reaching \(r=0.94\). However, higher CFG values also introduce a trade-off by potentially increasing the deviation from the absolute target volume while maintaining the desired volumetric trend.

3.0.5 Segmentation evaluation.↩︎

Table 1 summarizes the results using nnU-Net as segmentation backbone. On the internal ACDC dataset, the addition of synthetic data improves the LV DSC and significantly reduces HD across all structures. On the M&Ms dataset, adding synthetic data improves the LV DSC by \(3.40\%\) (from \(84.87\) to \(88.27\)) and greatly reduces the LV HD by \(6.12\) mm (from \(14.57\) to \(8.45\)). Similar gains are observed on M&Ms2, with a \(4.73\) mm reduction in LV boundary error. These results suggest that our motion LDM generates anatomically coherent dynamics that help reduce the domain gap between different scanner vendors.

We extended our evaluation to UNETR and Swin-UNETR (Table 2) to show that these improvements are not framework-specific. Vision Transformers typically require large-scale data to learn inductive biases and struggle with small datasets like ACDC. Our synthetic augmentation acts as a regularizer, providing performance boosts. On the M&Ms dataset, the UNETR model achieves a \(12.15\%\) improvement in LV DSC (from \(64.23\) to \(76.38\)) when trained with our synthetic data. Overall, these findings demonstrate that the proposed framework provides a promising solution for 4D data augmentation that can benefit data-hungry models under domain shift.

4 Conclusion↩︎

In this study, we developped a novel generative framework for 4D medical image synthesis, demonstrated through the explicit disentanglement of static anatomy and temporal dynamics via residual latent motion diffusion. By leveraging a semi-supervised VAE and latent motion priors, our approach generates paired 4D intensity volumes and segmentation masks. The results demonstrate that this approach significantly enhances the robustness and cross-vendor generalization of downstream tasks such as segmentation on cine CMR application. Future work will focus on extending this framework to a broader range of 4D medical imaging modalities characterized by complex spatiotemporal dynamics and annotation scarcity. Furthermore, the utility of the synthesized 4D sequences will be evaluated for additional clinical downstream tasks to further establish the universal benefits of this generative approach.

References↩︎

[1]
O. Bernard et al., “Deep Learning Techniques for Automatic MRI Cardiac Multi-Structures Segmentation and Diagnosis: Is the Problem Solved?” IEEE Transactions on Medical Imaging, vol. 37, no. 11, pp. 2514–2525, Nov. 2018, doi: 10.1109/TMI.2018.2837502.
[2]
B. Guo et al., “The Impact of Scanner Domain Shift on Deep Learning Performance in Medical Imaging: An Experimental Study.” arXiv, Oct. 2024, doi: 10.48550/arXiv.2409.04368.
[3]
G. A. Kaissis, M. R. Makowski, D. Rückert, and R. F. Braren, “Secure, privacy-preserving and federated machine learning in medical imaging,” Nature Machine Intelligence, vol. 2, no. 6, pp. 305–311, Jun. 2020, doi: 10.1038/s42256-020-0186-1.
[4]
N. Tajbakhsh, L. Jeyaseelan, Q. Li, J. N. Chiang, Z. Wu, and X. Ding, “Embracing imperfect datasets: A review of deep learning solutions for medical image segmentation,” Medical Image Analysis, vol. 63, p. 101693, Jul. 2020, doi: 10.1016/j.media.2020.101693.
[5]
C. Gao et al., “Synthetic data accelerates the development of generalizable learning-based algorithms for X-ray image analysis,” Nature Machine Intelligence, vol. 5, no. 3, pp. 294–308, Mar. 2023, doi: 10.1038/s42256-023-00629-1.
[6]
L. R. Koetzier et al., “Generating Synthetic Data for Medical Imaging,” Radiology, vol. 312, no. 3, p. e232471, Sep. 2024, doi: 10.1148/radiol.232471.
[7]
A. F. Frangi, S. A. Tsaftaris, and J. L. Prince, “Simulation and Synthesis in Medical Imaging,” IEEE transactions on medical imaging, vol. 37, no. 3, pp. 673–679, Mar. 2018, doi: 10.1109/TMI.2018.2800298.
[8]
A. Kazerouni et al., “Diffusion models in medical imaging: A comprehensive survey,” Medical Image Analysis, vol. 88, p. 102846, Aug. 2023, doi: 10.1016/j.media.2023.102846.
[9]
S. Wang et al., “Generative Artificial Intelligence in Medical Imaging: Foundations, Progress, and Clinical Translation,” Research, vol. 8, p. 1029, Dec. 2025, doi: 10.34133/research.1029.
[10]
S. Amirrajab, Y. Al Khalil, C. Lorenz, J. Weese, J. Pluim, and M. Breeuwer, “Label-informed cardiac magnetic resonance image synthesis through conditional generative adversarial networks,” Computerized Medical Imaging and Graphics, vol. 101, p. 102123, Oct. 2022, doi: 10.1016/j.compmedimag.2022.102123.
[11]
M. Vukadinovic, A. C. Kwan, D. Li, and D. Ouyang, GANcMRI: Cardiac magnetic resonance video generation and physiologic guidance using latent space prompting,” in Proceedings of the 3rd Machine Learning for Health Symposium, Dec. 2023, pp. 594–606, Accessed: Apr. 23, 2025. [Online]. Available: https://proceedings.mlr.press/v225/vukadinovic23a.html.
[12]
C. Liu, X. Yuan, Z. Yu, and Y. Wang, TexDC: Text-Driven Disease-Aware 4D Cardiac Cine MRI Images Generation,” in Computer VisionACCV 2024, 2025, pp. 191–208.
[13]
X. You, M. Zhang, H. Zhang, J. Yang, and N. Navab, “Temporal Differential Fields for 4D Motion Modeling via Image-to-Video Synthesis,” in Medical Image Computing and Computer Assisted InterventionMICCAI 2025, 2026, pp. 606–616, doi: 10.1007/978-3-032-05114-1_58.
[14]
H. Dou et al., 4D CardioSynth: Synthesising Dynamic Virtual Heart Populations Through Spatiotemporal Disentanglement,” in Medical Image Computing and Computer Assisted InterventionMICCAI 2025, 2026, pp. 3–12.
[15]
“Data science bowl cardiac challenge data.” Dec. 2015, Accessed: Oct. 13, 2025. [Online]. Available: https://kaggle.com/second-annual-data-science-bowl.
[16]
V. M. Campello et al., “Multi-Centre, Multi-Vendor and Multi-Disease Cardiac Segmentation: The M&Ms Challenge,” IEEE Transactions on Medical Imaging, vol. 40, no. 12, pp. 3543–3554, Dec. 2021, doi: 10.1109/TMI.2021.3090082.
[17]
C. Martín-Isla et al., “Deep Learning Segmentation of the Right Ventricle in Cardiac MRI: The M&Ms Challenge,” IEEE Journal of Biomedical and Health Informatics, vol. 27, no. 7, pp. 3302–3313, Jul. 2023, doi: 10.1109/JBHI.2023.3267857.
[18]
F. Isensee, P. F. Jaeger, S. A. A. Kohl, J. Petersen, and K. H. Maier-Hein, nnU-Net: A self-configuring method for deep learning-based biomedical image segmentation,” Nature Methods, vol. 18, no. 2, pp. 203–211, Feb. 2021, doi: 10.1038/s41592-020-01008-z.
[19]
A. Hatamizadeh et al., UNETR: Transformers for 3D Medical Image Segmentation,” in 2022 IEEE/CVF Winter Conference on Applications of Computer Vision (WACV), Jan. 2022, pp. 1748–1758, doi: 10.1109/WACV51458.2022.00181.
[20]
A. Hatamizadeh, V. Nath, Y. Tang, D. Yang, H. Roth, and D. Xu, “Swin UNETR: Swin Transformers for Semantic Segmentation of Brain Tumors in MRI Images.” arXiv, Jan. 2022, doi: 10.48550/arXiv.2201.01266.