Pith. sign in

REVIEW 4 major objections 5 minor 73 references

A Deep Learning Based Method for Fast Registration of Cardiac Magnetic Resonance Images

T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read FLIR, a cascade of lightweight U-Nets, registers cardiac MR volumes with fidelity comparable to state-of-the-art methods at a fraction of their inference cost, with strain values that repeat between test and retest acquisitions.

desk verdict A clearly written thesis whose headline speed claim is contradicted by its own tables; the efficiency analysis has value but the central comparison is broken by a units error. read the letter →

arxiv 2506.19167 v1 pith:ERMDZR3P submitted 2025-06-23 eess.IV cs.CVcs.LG

classification eess.IVcs.CVcs.LG
keywords cardiacmagneticresonanceimagingimageregistrationdeeplearningcascadedU-NetcineSSFPstrainquantificationinferencespeedtest-retestrepeatability
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to show that cardiac magnetic resonance (CMR) image registration — the step that turns a beating-heart cine movie into a map of tissue motion — does not have to choose between accuracy and speed. It proposes FLIR, a cascade of lightweight U-Nets, and claims that this design registers end-diastolic to end-systolic volumes from the same cine SSFP acquisition with fidelity comparable to state-of-the-art registration networks while running at a fraction of their inference cost. The speed comes from two design decisions: dropping the affine-alignment stage that other architectures treat as standard, and concentrating convolution operations on downsampled volumes where they are cheap. The paper then argues that the payoff is practical: the predicted deformations feed a finite-strain calculator, and the resulting radial, circumferential, and longitudinal strain values agree closely between test and retest acquisitions of the same patient — the consistency a motion-based alternative to gadolinium-enhanced imaging would need. If the claims hold, cardiac strain quantification from a routine contrast-free SSFP scan becomes a realistic research and clinical option.

What carries the argument

The load-bearing mechanism is a cascaded stack of compact U-Nets, each built so that convolutions run mostly at low resolution: the first layers use a 3x3x3 kernel with stride 2, and channel counts double as resolution halves, keeping full-resolution operations to a minimum. Each cascade outputs a displacement field $\phi$; the warped moving image $I_W$ is scored against the fixed image $I_F$ with the correlation-coefficient loss $L_{\text{corrcoef}} = 1 - \text{CorrCoef}[I_W, I_F]$, plus a total-variation smoothness term $L_{TV}$ that penalizes discontinuities in the field. The per-cascade similarity loss is back-propagated to every previous cascade, following the VTN training format. Two domain assumptions carry the design: same-acquisition SSFP volumes need no affine registration because patient motion would corrupt the images, and the left ventricle can be treated as a cylinder centered in the volume when converting Cartesian strain to radial, circumferential, and longitudinal strain. The companion strain calculator converts the flow field into finite strain via the deformation gradient and the right Cauchy-Green tensor, in both Lagrangian and Eulerian frames.

What would settle it

Register a batch of cardiac volume pairs to which small synthetic rigid offsets have been applied (for example 2-5 mm translations or 1-2 degree rotations between the fixed and moving volumes), then measure whether FLIR's LV dice and test-retest strain agreement fall below VoxelMorph's; a drop would confirm that the no-affine assumption, not the cascade design, is carrying part of the result.

Watch

Extended reading notes

Core claim

The central claim is that a single-pass, volumetric deep learning registration model can match the fidelity of state-of-the-art cardiac CMR registration without paying its inference cost, provided the architecture is engineered around a domain assumption: the two volumes come from one clinically usable SSFP acquisition, so no affine alignment is needed. FLIR is a cascade of U-Net sub-networks whose first convolutions use a stride of 2, so most operations run on downsampled volumes; each cascade predicts a small displacement field, the warped image is scored against the fixed image with the correlation-coefficient loss, and a total-variation term keeps the fields smooth. On the author's evaluation, 5xFLIR reaches a left-ventricle dice of 0.882 versus 0.835 for VoxelMorph on the same data, the largest fidelity gain of the compared methods, while 3xFLIR runs at about 1.7x VoxelMorph's CPU time compared with roughly 2.0x and 3.1x for RC-Net 2x and VR-Net relative to their own baselines. The same flow fields produce repeatable strain estimates, with average test-retest differences of 0.332 for radial, 0.344 for circumferential, and 0.032 for longitudinal strain, and the strain maps flag abnormal longitudinal strain in patients whose tissue is unhealthy, consistent with the physiology the thesis relies on. The stated goal of the thesis is that such a fast, optimized pipeline makes strain quantification from SSFP images a credible path to inferring unhealthy tissue without gadolinium contrast.

Load-bearing premise

The load-bearing assumption is that any two volumes registered by FLIR come from the same clinically usable SSFP acquisition, so that no affine alignment is needed; if patient motion, breath-hold shifts, or slice misregistration actually separate the volumes, the deformable field alone must absorb them and the reported speed-fidelity tradeoff would not transfer.

Editorial extensions

If this is right

  • Fidelity scales with cascade count: one cascade runs faster than VoxelMorph but scores lower, while three and five cascades surpass VoxelMorph on left-ventricle, myocardium, and right-ventricle dice.
  • The 3-cascade model reaches fidelity close to RC-Net and VR-Net at about 1.7x VoxelMorph's CPU time, versus roughly 2.0x and 3.1x for those competitors, making the accuracy-per-runtime tradeoff the model's central advantage.
  • The deformations are stable enough for strain quantification: average test-retest differences are 0.332 (radial), 0.344 (circumferential), and 0.032 (longitudinal), so longitudinal strain in particular repeats tightly.
  • The no-affine assumption means same-acquisition cardiac registration does not need alignment cascades, which is what lets the whole pipeline stay light.
  • Fast inference on mid-level hardware makes cohort-scale processing feasible, which the thesis cites as a precondition for research and clinical adoption.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same architecture should transfer to other intra-acquisition cardiac time-point pairs, not only end-diastole to end-systole, because neither design decision depends on which two phases are being registered.
  • The strain repeatability result is the strongest evidence for clinical utility, but the thesis does not compare its strain values against tagging-based or expert-measured ground truth; such a comparison would be the natural validation next step.
  • The paper itself notes that peak strain readings are contaminated by large values in the blood pool; masking the myocardium with a segmentation before computing strain would likely tighten the radial and circumferential test-retest differences further.
  • Other volumetric registration problems whose inputs come from a single acquisition — for example some fetal or fast abdominal sequences — could adopt the same 'drop the affine stage' shortcut and capture a similar speedup.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The manuscript (an MSc thesis posted on arXiv) proposes FLIR, a cascaded U-Net for unsupervised 3D registration of cardiac cine SSFP images at end-diastole and end-systole, together with a strain calculator that converts the predicted deformation into radial, circumferential, and longitudinal strain. The method is evaluated against a VoxelMorph baseline trained on the same ACDC/UKBB data, compared with published RC-Net, VR-Net, and VoxelMorph numbers from Jia et al., and tested for strain repeatability on a 10-patient test-retest dataset. The central claim is that FLIR achieves registration fidelity comparable to state-of-the-art methods while taking a fraction of the inference time. The paper's own measurements, however, do not support this claim: the only FLIR variant faster than VoxelMorph is 1xFLIR, which has lower Dice, while all variants that match or exceed VoxelMorph Dice are slower. The cross-paper speed comparison also contains a units error and uses non-controlled conditions.

Significance. If the speed-fidelity claim were established, the work would be practically useful: a lightweight cascaded registration model with a documented strain calculator and test-retest strain repeatability could lower the computational barrier to large-scale CMR strain analysis. The paper has some genuine strengths: the VoxelMorph-Lite ablation cleanly isolates the runtime cost of full-resolution layers, the strain-calculator unit tests in Appendix A are a reproducible verification artifact, and the limitation discussion in Section 5.2 is candid. However, the central contribution—a model that is both faster than VoxelMorph and at least as accurate—is not present in the paper's own tables, and the external speed comparison relies on cross-dataset numbers with an order-of-magnitude unit error. As presented, the main claim is not established, although the underlying engineering (efficient cascaded U-Nets for cardiac registration) is a reasonable starting point for further work.

major comments (4)
  1. [§4.2.2, Tables 4.1 and 4.2] The central claim that FLIR performs registration in a fraction of the time while maintaining fidelity is contradicted by the paper's own measurements. In Table 4.1, 1xFLIR has lower LV Dice than VoxelMorph (0.801 vs 0.835) and is the only FLIR variant that is faster on CPU (47.2 ms vs 76.2 ms in Table 4.2). Every configuration that matches or exceeds VoxelMorph LV Dice—2x, 3x, and 5x FLIR—is slower on CPU (98.9, 133.1, and 238.0 ms vs 76.2 ms), with the same ordering on GPU1 and GPU2. Thus the results contain no operating point that is simultaneously faster than VoxelMorph and at least as accurate; the abstract and the Section 5.1 conclusion overstate what Table 4.2 supports.
  2. [§4.2.2, Table 4.6 and Table 2.3] The speed comparison against RC-Net and VR-Net is invalid as reported. Table 4.6 labels the values from Jia et al. as milliseconds, but Table 2.3, the source of those exact numbers (5.97, 0.10, 11.95, 0.21, etc.), reports seconds. The table therefore misstates the external runtimes by three orders of magnitude. Additionally, the RC-Net/VR-Net Dice and timing figures in Tables 4.4–4.6 come from different datasets (UKBB, 3DCMR), different preprocessing, and different hardware than the FLIR evaluation, so the relative-slowdown comparisons in Section 4.2.3 and Figures 4.8–4.11 are not controlled comparisons. The conclusion that FLIR has smaller overhead than RC-Net/VR-Net rests on these inconsistent numbers.
  3. [§3.1 and §5.2] The decision to remove all affine registration stages is load-bearing for the method's speed, but the underlying assumption is untested. The thesis assumes that for any clinically usable SSFP sequence there should be no affine deformation (§3.1), yet ED and ES volumes from the same study can still be affected by breath-hold position changes, through-plane motion, and slice misregistration. Section 5.2 explicitly limits the evaluation to artifact-free data. Without an experiment or analysis showing that residual affine components are negligible for the target data, the claimed speed advantage may not transfer to realistic acquisitions, because the deformable network would have to compensate for global transformations itself.
  4. [§4.3.2, Tables 4.7–4.11] The test-retest strain analysis contains an unexplained duplication and a metrics problem. In Table 4.7, Patient 10 has identical test and retest values for all three strain components (0.763, 0.932, 0.818), giving zero differences in Table 4.8; for a genuine retest acquisition this is implausible and is not commented on. More broadly, the average test-retest differences reported in Table 4.9 for radial (0.332±0.236) and circumferential (0.344±0.356) strain are large relative to the myocardial strain values the method is intended to measure, and the authors show in Section 4.3.2 that the nominally peak strains are dominated by blood-pool artifacts unless the most negative values are selected (Tables 4.10–4.11). The claim that strain values are very consistent is therefore only supported for longitudinal strain and only after a post-hoc redefinition of the peak metric.
minor comments (5)
  1. [Table 4.3] The compiled GPU1 total timings (e.g., 0.0269 ms for VoxelMorph) are about two orders of magnitude smaller than the uncompiled values in Table 4.2 (2.193 ms for the same configuration); the measurement protocol, including whether data transfer and warping are included, should be stated.
  2. [Table 4.10] In Table 4.10, the Patient 3 retest value 0.441 is positive under a column labeled 'Peak Negative Radial Strain'; if this is a sign typo, it should be corrected.
  3. [Tables 4.7–4.11] The strain tables do not state the units of the reported strain values or define whether 'peak' means maximum absolute value, maximum positive value, or most negative value; this makes the values in Table 4.7 difficult to interpret.
  4. [Throughout] Several typographical errors remain, including 'Convolutoinal' in the list of abbreviations, 'start-of-the-art' in Section 2.7, and 'inevitability loss' in Section 3.1 (presumably 'invertibility loss').
  5. [§2.5.1] The abbreviation LDDMM is used in the discussion of Quicksilver without definition or citation; a brief definition and reference would help readers outside the registration subfield.

Circularity Check

0 steps flagged · score 0.0 of 10

No load-bearing circular reasoning; the registration and strain claims are empirically evaluated against external dice and test-retest consistency targets.

full rationale

The FLIR thesis contains no self-citations and no fitted parameter that is renamed as a prediction. The registration model is trained with an unsupervised correlation-coefficient plus total-variation loss, and its fidelity is then judged by dice overlap of warped segmentations; dice is not part of the training objective, so high dice is not guaranteed by construction. The loss weights and cascade count are ordinary model-selection choices, not quantities defined in terms of the reported outcomes. The strain repeatability evaluation compares strain values from paired test and retest acquisitions, which is an external consistency check rather than a definitional identity. The only substantive criticism suggested by the paper's own tables is that the speed-versus-fidelity claim lacks a single FLIR operating point that is both faster than VoxelMorph and at least as accurate; that is a correctness and experimental-design concern, not circularity. Under the specified criteria, the derivation chain is self-contained and no circular step can be exhibited with quotes.

Assumptions & free parameters 2 free parameters · 4 assumptions · 0 invented entities

The central claims rest on two domain assumptions: no-affine alignment and LV-center-at-volume-center, plus a self-defined repeatability metric. No new physical entities are introduced.

free parameters (2)
  • Loss weights ω_corrcoef and ω_TV = not reported
    Eq. 3.3 combines correlation coefficient and total variation losses with manually tuned weights; no values or sensitivity analysis are given.
  • Number of cascades (1, 2, 3, 5) = 5 used for strain experiments
    Model selection is made by evaluating dice and timing for different cascade counts; the choice of 5xFLIR for strain tests is a design choice that affects the reported best-case results.
assumptions (4)
  • domain assumption Images from the same SSFP acquisition are already aligned, so affine registration is unnecessary.
    Motivates removing the affine cascade from the FLIR architecture. If patient motion or slice misregistration occurs between ED and ES phases, the model must compensate, and the speed/fidelity tradeoff changes. Stated in Section 1.4 and Section 3.1.
  • domain assumption The center of the left ventricle is at the center of the volume for cylindrical coordinate conversion.
    Used in Section 3.2 to convert Cartesian strain to radial, circumferential, and longitudinal components. If the LV is off-center, strain values in the myocardium are biased; the thesis lists this as a limitation.
  • domain assumption Test-retest acquisitions of the same patient should yield nearly identical strain values, so the difference between them is a valid measure of accuracy.
    Defines the strain validation in Section 4.3.1. The assumption is reasonable for repeatability but does not measure accuracy against a ground truth deformation.
  • standard math Pseudo-inverse F^{-1} = (F^T F)^{-1} F^T is used to compute the Eulerian strain tensor.
    Section 3.2, Eq. 3.7. Standard linear algebra but the pseudo-inverse is computed on a per-voxel gradient tensor; behavior at singular or near-singular gradients is not analyzed.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Deep Learning Based Method for Fast Registration of Cardiac Magnetic Resonance Images." pith.science (2026). https://pith.science/paper/ERMDZR3P

@misc{pith2026250619167,
  author       = {Pith},
  title        = {Pith review of: A Deep Learning Based Method for Fast Registration of Cardiac Magnetic Resonance Images},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/ERMDZR3P}},
  note         = {Machine review of arXiv:2506.19167}
}
read the original abstract

Image registration is used in many medical image analysis applications, such as tracking the motion of tissue in cardiac images, where cardiac kinematics can be an indicator of tissue health. Registration is a challenging problem for deep learning algorithms because ground truth transformations are not feasible to create, and because there are potentially multiple transformations that can produce images that appear correlated with the goal. Unsupervised methods have been proposed to learn to predict effective transformations, but these methods take significantly longer to predict than established baseline methods. For a deep learning method to see adoption in wider research and clinical settings, it should be designed to run in a reasonable time on common, mid-level hardware. Fast methods have been proposed for the task of image registration but often use patch-based methods which can affect registration accuracy for a highly dynamic organ such as the heart. In this thesis, a fast, volumetric registration model is proposed for the use of quantifying cardiac strain. The proposed Deep Learning Neural Network (DLNN) is designed to utilize an architecture that can compute convolutions incredibly efficiently, allowing the model to achieve registration fidelity similar to other state-of-the-art models while taking a fraction of the time to perform inference. The proposed fast and lightweight registration (FLIR) model is used to predict tissue motion which is then used to quantify the non-uniform strain experienced by the tissue. For acquisitions taken from the same patient at approximately the same time, it would be expected that strain values measured between the acquisitions would have very small differences. Using this metric, strain values computed using the FLIR method are shown to be very consistent.

Figures

Figures reproduced from arXiv: 2506.19167 by the authors.

Figure 1.1
Figure 1.1. Illustration of speckles in an echocardiography image where the speckle [PITH_FULL_IMAGE:figures/full_fig_p014_1_1.png] view at source ↗
Figure 1.2
Figure 1.2. Illustration of an approximation of the left ventricle with the common directions along the [PITH_FULL_IMAGE:figures/full_fig_p014_1_2.png] view at source ↗
Figure 1.3
Figure 1.3. Sample long and short axis echocardiography acquisitions that would be required for strain [PITH_FULL_IMAGE:figures/full_fig_p015_1_3.png] view at source ↗
Figures from the paper (43 more)
Figure 2.1
Figure 2.1. Figure 2.1: An illustration of a hydrogen proton precessing around a magnetic [PITH_FULL_IMAGE:figures/full_fig_p021_2_1.png]
Figure 2.2
Figure 2.2. Figure 2.2: An illustration of how T1 time is measured in relation to net magnetization along Z axis. [PITH_FULL_IMAGE:figures/full_fig_p022_2_2.png]
Figure 2.3
Figure 2.3. Figure 2.3: An illustration of how T2 time is measured in relation to net magnetization along X and Y axis. [PITH_FULL_IMAGE:figures/full_fig_p022_2_3.png]
Figure 2
Figure 2. Figure 2: a is a pulse sequence called a spin echo (SE), enhanced with gadolinium. Compared to the inversion [PITH_FULL_IMAGE:figures/full_fig_p024_2.png]
Figure 2.4
Figure 2.4. Figure 2.4: LGE SE and LGE IR GRE sequences myocardium infarction identi [PITH_FULL_IMAGE:figures/full_fig_p025_2_4.png]
Figure 2.5
Figure 2.5. Figure 2.5: Examples of normal longitudinal, circumferential, and radial strain values are shown in charts A, [PITH_FULL_IMAGE:figures/full_fig_p027_2_5.png]
Figure 2.6
Figure 2.6. Figure 2.6: Illustration of image registration. For a given [PITH_FULL_IMAGE:figures/full_fig_p028_2_6.png]
Figure 2.7
Figure 2.7. Figure 2.7: A deep neural network. The visible input and output layers are shaded blue with the hidden [PITH_FULL_IMAGE:figures/full_fig_p034_2_7.png]
Figure 2.8
Figure 2.8. Figure 2.8: An example of convolution, using zero padding to retain the original shape of the input [67]. [PITH_FULL_IMAGE:figures/full_fig_p035_2_8.png]
Figure 2.9
Figure 2.9. Figure 2.9: An example of max pooling of a 4x4 input tensor that is down sampled into a 2x2 tensor [67]. [PITH_FULL_IMAGE:figures/full_fig_p036_2_9.png]
Figure 2.10
Figure 2.10. Figure 2.10: U-Net architecture example which downsamples a 572x572 image to 32x32 at its smallest [PITH_FULL_IMAGE:figures/full_fig_p037_2_10.png]
Figure 2
Figure 2. Figure 2: d would not realistically move to the top right of Figure 2.11c, for example. [PITH_FULL_IMAGE:figures/full_fig_p038_2.png]
Figure 2.11
Figure 2.11. Figure 2.11: A sample xed and moving image and each pixel with SI of 100 from each of them. This motivates how simply nding a deformation that moves all pixels into positions that created a seemingly well-correlated warped image might not be realistic for real tissue deformati…
Figure 2.12
Figure 2.12. Figure 2.12: Architecture of the VoxelMorph Model [7]. The grey blocks indicate the encoder half of the [PITH_FULL_IMAGE:figures/full_fig_p040_2_12.png]
Figure 2.13
Figure 2.13. Figure 2.13: Illustration of the cascading structure of the VTN model. End-to-end learning is achieved by [PITH_FULL_IMAGE:figures/full_fig_p043_2_13.png]
Figure 2.14
Figure 2.14. Figure 2.14: Illustration of cascade architecture. For each cascade, [PITH_FULL_IMAGE:figures/full_fig_p044_2_14.png]
Figure 2.15
Figure 2.15. Figure 2.15: Illustration of the architecture of the VR-Net model. In this illustration WL is the warping [PITH_FULL_IMAGE:figures/full_fig_p045_2_15.png]
Figure 2
Figure 2. Figure 2: b, and if the whole mesh is being translated as in Figure 2.17c. [PITH_FULL_IMAGE:figures/full_fig_p048_2.png]
Figure 2.16
Figure 2.16. Figure 2.16: A visual representation of normal and shear strain[27] [PITH_FULL_IMAGE:figures/full_fig_p048_2_16.png]
Figure 2.17
Figure 2.17. Figure 2.17: An example of an undeformed and a deformed mesh to illustrate how each point in the mesh [PITH_FULL_IMAGE:figures/full_fig_p049_2_17.png]
Figure 3.1
Figure 3.1. Figure 3.1: Implementation of the U-Net used as the sub-networks (top) and an example of the end-to-end [PITH_FULL_IMAGE:figures/full_fig_p055_3_1.png]
Figure 3
Figure 3. Figure 3: b also shows that the FLIR model is using the learning format of the VTN, as opposed to the [PITH_FULL_IMAGE:figures/full_fig_p055_3.png]
Figure 3.2
Figure 3.2. Figure 3.2: Illustration of the relationship between cartesian and cylindrical coordinate spaces [52]. [PITH_FULL_IMAGE:figures/full_fig_p058_3_2.png]
Figure 4.1
Figure 4.1. Figure 4.1: Sample slice from a moving volume in the ACDC dataset [PITH_FULL_IMAGE:figures/full_fig_p060_4_1.png]
Figure 4.2
Figure 4.2. Figure 4.2: Sample slice from a xed volume in the ACDC dataset (a) Train Data Split (b) Val Data Split (c) Test Data Split [PITH_FULL_IMAGE:figures/full_fig_p060_4_2.png]
Figure 4.3
Figure 4.3. Figure 4.3: Distribution of train, validation, and test data over datasets. [PITH_FULL_IMAGE:figures/full_fig_p060_4_3.png]
Figure 4.4
Figure 4.4. Figure 4.4: VoxelMorph Lite architecture. It is an exact copy of the VoxelMorph architecture but without [PITH_FULL_IMAGE:figures/full_fig_p061_4_4.png]
Figure 4.5
Figure 4.5. Figure 4.5: Inference times of FLIR models with various cascades compared to VoxelMorph and VoxelMorph [PITH_FULL_IMAGE:figures/full_fig_p064_4_5.png]
Figure 4.6
Figure 4.6. Figure 4.6: Inference times of FLIR models with various cascades compared to VoxelMorph and VoxelMorph [PITH_FULL_IMAGE:figures/full_fig_p065_4_6.png]
Figure 4.7
Figure 4.7. Figure 4.7: Inference times of FLIR models with various cascades compared to VoxelMorph and VoxelMorph [PITH_FULL_IMAGE:figures/full_fig_p065_4_7.png]
Figure 4.8
Figure 4.8. Figure 4.8: Inference times of state-of-the-art models with various cascades compared to VoxelMorph models [PITH_FULL_IMAGE:figures/full_fig_p067_4_8.png]
Figure 4.9
Figure 4.9. Figure 4.9: Inference times of state-of-the-art models with various cascades compared to VoxelMorph models [PITH_FULL_IMAGE:figures/full_fig_p067_4_9.png]
Figure 4.10
Figure 4.10. Figure 4.10: Relative slowdown of each model over VoxelMorph on CPU [PITH_FULL_IMAGE:figures/full_fig_p069_4_10.png]
Figure 4.11
Figure 4.11. Figure 4.11: Relative slowdown of each model over VoxelMorph on GPU [PITH_FULL_IMAGE:figures/full_fig_p069_4_11.png]
Figure 4.12
Figure 4.12. Figure 4.12: Visual comparison of results of the VoxelMorph registration. [PITH_FULL_IMAGE:figures/full_fig_p071_4_12.png]
Figure 4.13
Figure 4.13. Figure 4.13: Visual comparison of results of the 2xFLIR registration. [PITH_FULL_IMAGE:figures/full_fig_p072_4_13.png]
Figure 4.14
Figure 4.14. Figure 4.14: Visual comparison of results of the 3xFLIR registration. [PITH_FULL_IMAGE:figures/full_fig_p072_4_14.png]
Figure 4.15
Figure 4.15. Figure 4.15: Quantied radial strain values paired between test and retest for each patient. 4.3.2 Strain Analysis Recorded strain results for the 5xFLIR model are shown in [PITH_FULL_IMAGE:figures/full_fig_p074_4_15.png]
Figure 4.16
Figure 4.16. Figure 4.16: Quantied circumferential strain values paired between test and retest for each patient [PITH_FULL_IMAGE:figures/full_fig_p075_4_16.png]
Figure 4.17
Figure 4.17. Figure 4.17: Quantied longitudinal strain values paired between test and retest for each patient. 64 [PITH_FULL_IMAGE:figures/full_fig_p075_4_17.png]
Figure 4.18
Figure 4.18. Figure 4.18: Bland-Altman plot of the agreement between radial strains [PITH_FULL_IMAGE:figures/full_fig_p076_4_18.png]
Figure 4.19
Figure 4.19. Figure 4.19: Bland-Altman plot of the agreement between circumferential strains [PITH_FULL_IMAGE:figures/full_fig_p076_4_19.png]
Figure 4.20
Figure 4.20. Figure 4.20: Bland-Altman plot of the agreement between longitudinal strains [PITH_FULL_IMAGE:figures/full_fig_p077_4_20.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

73 extracted references · 68 canonical work pages

  1. [1]

    Deep learning using rectied linear units (relu).arXiv preprint arXiv:1803.08375, 2018

    Abien Fred Agarap. Deep learning using rectied linear units (relu).arXiv preprint arXiv:1803.08375, 2018

  2. [2]

    University of Salford (United Kingdom), 2017

    Ali Majeed Hasan Al-Waeli.An automated system for the classication and segmentation of brain tumours in MRI images based on the modied grey level co-occurrence matrix. University of Salford (United Kingdom), 2017

  3. [3]

    Elastic matching of diusion tensor images.Computer Vision and Image Understanding, 77(2):233–250, 2000

    Daniel C Alexander and James C Gee. Elastic matching of diusion tensor images.Computer Vision and Image Understanding, 77(2):233–250, 2000

  4. [4]

    John mccarthy: father of ai.IEEE Intelligent Systems, 17(5):84–85, 2002

    Scott L Andresen. John mccarthy: father of ai.IEEE Intelligent Systems, 17(5):84–85, 2002

  5. [5]

    Cardiovascular magnetic resonance in the evaluation of heart failure.Heart, 93(8):985–992, 2007

    Ravi G Assomull, Dudley J Pennell, and Sanjay K Prasad. Cardiovascular magnetic resonance in the evaluation of heart failure.Heart, 93(8):985–992, 2007

  6. [6]

    Types of machine learning algorithms.New advances in machine learning, 3:19–48, 2010

    Taiwo Oladipupo Ayodele. Types of machine learning algorithms.New advances in machine learning, 3:19–48, 2010

  7. [7]

    Voxelmorph: a learning framework for deformable medical image registration.IEEE transactions on medical imaging, 38(8):1788–1800, 2019

    Guha Balakrishnan, Amy Zhao, Mert R Sabuncu, John Guttag, and Adrian V Dalca. Voxelmorph: a learning framework for deformable medical image registration.IEEE transactions on medical imaging, 38(8):1788–1800, 2019

  8. [8]

    An empirical study on generalizations of the relu activation function

    Chaity Banerjee, Tathagata Mukherjee, and Eduardo Pasiliao Jr. An empirical study on generalizations of the relu activation function. InProceedings of the 2019 ACM Southeast Conference, pages 164–167, 2019

Show all 73 references
  1. [9]

    How do i do it? speckle-tracking echocardiography.Indian heart journal, 65(1):117, 2013

    Manish Bansal and Ravi R Kasliwal. How do i do it? speckle-tracking echocardiography.Indian heart journal, 65(1):117, 2013

  2. [10]

    Some recent applications of reinforcement learning

    Andrew G Barto, Philip S Thomas, and Richard S Sutton. Some recent applications of reinforcement learning. InProceedings of the Eighteenth Yale Workshop on Adaptive and Learning Systems, 2017. 73

  3. [11]

    Olivier Bernard, Alain Lalande, Clement Zotti, Frederick Cervenansky, Xin Yang, Pheng-Ann Heng, Irem Cetin, Karim Lekadir, Oscar Camara, Miguel Angel Gonzalez Ballester, et al. Deep learning tech- niques for automatic mri cardiac multi-structures segmentation and diagnosis: is...

  4. [12]

    Optimizing the dice score and jaccard index for medical image segmentation: Theory and practice

    Jeroen Bertels, Tom Eelbode, Maxim Berman, Dirk Vandermeulen, Frederik Maes, Raf Bisschops, and Matthew B Blaschko. Optimizing the dice score and jaccard index for medical image segmentation: Theory and practice. InMedical Image Computing and Computer Assisted Intervention–MIC...

  5. [13]

    From compressed-sensing to articial intelligence-based cardiac mri reconstruction.Frontiers in cardiovascular medicine, 7:17, 2020

    Aur´ elien Bustin, Niccolo Fuin, Ren´ e M Botnar, and Claudia Prieto. From compressed-sensing to articial intelligence-based cardiac mri reconstruction.Frontiers in cardiovascular medicine, 7:17, 2020

  6. [14]

    Detection of myocardial scar using t2* in a clinical setting.Journal of Cardiovascular Magnetic Reso- nance, 17:1–2, 2015

    Britta Butzbach, Bernhard Schnackenburg, Christoph Jacoby, Malte Kelm, and Mirja Neizel-Wittke. Detection of myocardial scar using t2* in a clinical setting.Journal of Cardiovascular Magnetic Reso- nance, 17:1–2, 2015

  7. [15]

    Steady-state free precession in nuclear magnetic resonance.Physical Review, 112(5):1693, 1958

    HY Carr. Steady-state free precession in nuclear magnetic resonance.Physical Review, 112(5):1693, 1958

  8. [16]

    Applying self- supervised learning to medicine: review of the state of the art and medical implementations

    Alexander Chowdhury, Jacob Rosenthal, Jonathan Waring, and Renato Umeton. Applying self- supervised learning to medicine: review of the state of the art and medical implementations. In Informatics, volume 8, page 59. MDPI, 2021

  9. [17]

    Patch-based discrete registration of clinical brain images

    Adrian V Dalca, Andreea Bobu, Natalia S Rost, and Polina Golland. Patch-based discrete registration of clinical brain images. InPatch-Based Techniques in Medical Imaging: Second International Workshop, Patch-MI 2016, Held in Conjunction with MICCAI 2016, Athens, Greece, Octobe...

  10. [18]

    Strain and strain rate imaging by echocardiography-basic concepts and clinical applicability.Current cardiology reviews, 5(2):133–148, 2009

    Michael Dandel, Hans Lehmkuhl, Christoph Knosalla, Nino Suramelashvili, and Roland Hetzer. Strain and strain rate imaging by echocardiography-basic concepts and clinical applicability.Current cardiology reviews, 5(2):133–148, 2009

  11. [19]

    The history of echocardiography.Ultrasound in medicine & biology, 30(12):1565–1644, 2004

    Inge Edler and Kjell Lindstr¨ om. The history of echocardiography.Ultrasound in medicine & biology, 30(12):1565–1644, 2004

  12. [20]

    Strain imaging echocardiography: what imag- ing cardiologists should know.Current cardiology reviews, 13(2):118–129, 2017

    Dagmar F Hernandez-Suarez and Angel L´ opez-Candales. Strain imaging echocardiography: what imag- ing cardiologists should know.Current cardiology reviews, 13(2):118–129, 2017. 74

  13. [21]

    Fda drug safety communication: Fda warns that gadolinium-based contrast agents (gbcas) are retained in the body; requires new class warning

    US FDA. Fda drug safety communication: Fda warns that gadolinium-based contrast agents (gbcas) are retained in the body; requires new class warning. 2018, 2018

  14. [22]

    Registration of 3-d intraoperative mr images of the brain using anite-element biomechanical model

    Matthieu Ferrant, Arya Nabavi, Benoit Macq, Ferenc A Jolesz, Ron Kikinis, and Simon K Wareld. Registration of 3-d intraoperative mr images of the brain using anite-element biomechanical model. IEEE transactions on medical imaging, 20(12):1384–1397, 2001

  15. [23]

    Recent advances in convolutional neural networks

    Jiuxiang Gu, Zhenhua Wang, Jason Kuen, Lianyang Ma, Amir Shahroudy, Bing Shuai, Ting Liu, Xingxing Wang, Gang Wang, Jianfei Cai, et al. Recent advances in convolutional neural networks. Pattern recognition, 77:354–377, 2018

  16. [24]

    Digital selection and analogue amplication coexist in a cortex-inspired silicon circuit.nature, 405(6789):947–951, 2000

    Richard HR Hahnloser, Rahul Sarpeshkar, Misha A Mahowald, Rodney J Douglas, and H Sebastian Seung. Digital selection and analogue amplication coexist in a cortex-inspired silicon circuit.nature, 405(6789):947–951, 2000

  17. [25]

    Machine learning and articial intelligence: denitions, applications, and future directions.Current reviews in musculoskeletal medicine, 13:69–76, 2020

    J Matthew Helm, Andrew M Swiergosz, Heather S Haeberle, Jaret M Karnuta, Jonathan L Schaer, Viktor E Krebs, Andrew I Spitzer, and Prem N Ramkumar. Machine learning and articial intelligence: denitions, applications, and future directions.Current reviews in musculoskeletal m...

  18. [26]

    A clinicians guide to tissue doppler imaging.Circulation, 113(10):e396–e398, 2006

    Carolyn Y Ho and Scott D Solomon. A clinicians guide to tissue doppler imaging.Circulation, 113(10):e396–e398, 2006

  19. [27]

    Mechanics of materials: Strainmechanics of slender structures: Boston university, 2013

    Douglas Holmes. Mechanics of materials: Strainmechanics of slender structures: Boston university, 2013

  20. [28]

    Unet 3+: A full-scale connected unet for medical image segmentation

    Huimin Huang, Lanfen Lin, Ruofeng Tong, Hongjie Hu, Qiaowei Zhang, Yutaro Iwamoto, Xianhua Han, Yen-Wei Chen, and Jian Wu. Unet 3+: A full-scale connected unet for medical image segmentation. In ICASSP 2020-2020 IEEE international conference on acoustics, speech and signal pro...

  21. [29]

    Myocardial tagging with mr imaging: overview of normal and pathologicndings.Radiographics, 32(5):1381–1398, 2012

    Mi-Young Jeung, Philippe Germain, Pierre Croisille, Soraya El ghannudi, Catherine Roy, and Afshin Gangi. Myocardial tagging with mr imaging: overview of normal and pathologicndings.Radiographics, 32(5):1381–1398, 2012

  22. [30]

    Learning a model-driven variational network for deformable image registration.IEEE Transactions on Medical Imaging, 41(1):199–212, 2021

    Xi Jia, Alexander Thorley, Wei Chen, Huaqi Qiu, Linlin Shen, Iain B Styles, Hyung Jin Chang, Ales Leonardis, Antonio De Marvao, Declan P ORegan, et al. Learning a model-driven variational network for deformable image registration.IEEE Transactions on Medical Imaging, 41(1):19...

  23. [31]

    Real-time volumetric echocar- diography: the technology and the possibilities.Echocardiography, 17(8):773–779, 2000

    Joseph Kisslo, Bohdan Firek, Takahiro Ota, Duk Hyun Kang, Craig E Fleishman, George Stetten, Jennifer Li, Chikai J Ohazama, David Adams, Carolyn Landolfo, et al. Real-time volumetric echocar- diography: the technology and the possibilities.Echocardiography, 17(8):773–779, 2000

  24. [32]

    Richard A Lerski, K Straughan, LR Schad, D Boyce, S Bl¨ uml, and I Zuna. Viii. mr image texture analysis—an approach to tissue characterization.Magnetic resonance imaging, 11(6):873–887, 1993

  25. [33]

    A survey of convolutional neural networks: analysis, applications, and prospects.IEEE transactions on neural networks and learning systems, 2021

    Zewen Li, Fan Liu, Wenjie Yang, Shouheng Peng, and Jun Zhou. A survey of convolutional neural networks: analysis, applications, and prospects.IEEE transactions on neural networks and learning systems, 2021

  26. [34]

    Rectier nonlinearities improve neural network acoustic models

    Andrew L Maas, Awni Y Hannun, Andrew Y Ng, et al. Rectier nonlinearities improve neural network acoustic models. InProc. icml, volume 30, page 3. Atlanta, GA, 2013

  27. [35]

    Articial intelligence and texture analysis in cardiac imaging.Current cardiology reports, 22:1–9, 2020

    Manoj Mannil, Matthias Eberhard, Jochen von Spiczak, Walter Heindel, Hatem Alkadhi, and Bettina Baessler. Articial intelligence and texture analysis in cardiac imaging.Current cardiology reports, 22:1–9, 2020

  28. [36]

    Sophie Mavrogeni, Juerg Schwitter, Albert van Rossum, Robin Nijveldt, Antony Aletras, Genovefa Kolovou, Gerald Pohost, and Joao Lima. Cardiac magnetic resonance imaging in myocardial inamma- tion in autoimmune rheumatic diseases: an appraisal of the diagnostic strengths and l...

  29. [37]

    Acute myocardial infarction

    Oren J Mechanic, Michael Gavin, and Shamai A Grossman. Acute myocardial infarction. 2017

  30. [38]

    Writing Group Members, Thomas Thom, Nancy Haase, Wayne Rosamond, Virginia J Howard, John Rumsfeld, Teri Manolio, Zhi-Jie Zheng, Katherine Flegal, Christopher ODonnell, et al. Heart disease and stroke statistics—2006 update: a report from the american heart association statist...

  31. [39]

    Introduction to articial intelligence in medicine.Minimally Invasive Therapy & Allied Technologies, 28(2):73–81, 2019

    Yoav Mintz and Ronit Brodie. Introduction to articial intelligence in medicine.Minimally Invasive Therapy & Allied Technologies, 28(2):73–81, 2019

  32. [40]

    Denisa Muraru, Alice Niero, Hugo Rodriguez-Zanella, Diana Cherata, and Luigi Badano. Three- dimensional speckle-tracking echocardiography: benets and limitations of integrating myocardial me- chanics with three-dimensional imaging.Cardiovascular diagnosis and therapy, 8(1):101, 2018

  33. [41]

    A primer for un- derstanding radiology articles about machine learning and deep learning.Diagnostic and Interventional Imaging, 101(12):765–770, 2020

    Takeshi Nakaura, Toru Higaki, Kazuo Awai, Osamu Ikeda, and Yasuyuki Yamashita. A primer for un- derstanding radiology articles about machine learning and deep learning.Diagnostic and Interventional Imaging, 101(12):765–770, 2020. 76

  34. [42]

    Ulf Neisius, Hossam El-Rewaidy, Selcuk Kucukseymen, Connie W Tsao, Jennifer Mancio, Shiro Nakamori, Warren J Manning, and Reza Nezafat. Texture signatures of native myocardial t1 as novel imaging markers for identication of hypertrophic cardiomyopathy patients without scar.Jo...

  35. [43]

    Theory, simulation, and compensation of physiological motion artifacts in functional mri

    Douglas C Noll and Walter Schneider. Theory, simulation, and compensation of physiological motion artifacts in functional mri. InProceedings of 1st International Conference on Image Processing, volume 3, pages 40–44. IEEE, 1994

  36. [44]

    Medical image registration: A review.Computer methods in biomechanics and biomedical engineering, 17:73–93, 01 2014

    Francisco Oliveira and Joao Tavares. Medical image registration: A review.Computer methods in biomechanics and biomedical engineering, 17:73–93, 01 2014

  37. [45]

    Fisp—a new fast mri sequence.Electromedica, 54(1):15–18, 1986

    A Oppelt, R Graumann, H Barfuss, H Fischer, W Hartl, W Schajor, et al. Fisp—a new fast mri sequence.Electromedica, 54(1):15–18, 1986

  38. [46]

    A review of deep learning in image recognition

    Myeongsuk Pak and Sanghoon Kim. A review of deep learning in image recognition. In2017 4th in- ternational conference on computer applications and information processing technology (CAIPT), pages 1–3. IEEE, 2017

  39. [47]

    Unsupervised learning of goal spaces for intrinsically motivated goal exploration.arXiv preprint arXiv:1803.00781, 2018

    Alexandre P´ er´ e, S´ ebastien Forestier, Olivier Sigaud, and Pierre-Yves Oudeyer. Unsupervised learning of goal spaces for intrinsically motivated goal exploration.arXiv preprint arXiv:1803.00781, 2018

  40. [48]

    Strain and strain rate echocardiography

    Cristina Pislaru, Theodore P Abraham, and Marek Belohlavek. Strain and strain rate echocardiography. Current opinion in cardiology, 17(5):443–454, 2002

  41. [49]

    Physics of mri: a primer.Journal of magnetic resonance imaging, 35(5):1038–1054, 2012

    Donald B Plewes and Walter Kucharczyk. Physics of mri: a primer.Journal of magnetic resonance imaging, 35(5):1038–1054, 2012

  42. [50]

    Cardiac magnetic resonance imaging: aone-stop-shop evaluation of myocardial dysfunction.Current opinion in cardiology, 17(6):663–670, 2002

    Michael Poon, Valentin Fuster, and Zahi Fayad. Cardiac magnetic resonance imaging: aone-stop-shop evaluation of myocardial dysfunction.Current opinion in cardiology, 17(6):663–670, 2002

  43. [51]

    End-to-end deep learning nonrigid motion-corrected reconstruction for highly accelerated free-breathing coronary mra.Magnetic Resonance in Medicine, 86(4):1983–1996, 2021

    Haikun Qi, Reza Hajhosseiny, Gastao Cruz, Thomas Kuestner, Karl Kunze, Radhouene Neji, Ren´ e Botnar, and Claudia Prieto. End-to-end deep learning nonrigid motion-corrected reconstruction for highly accelerated free-breathing coronary mra.Magnetic Resonance in Medicine, 86(4):...

  44. [52]

    3-d facial expression represen- tation using b-spline statistical shape model

    Wei Quan, Bogdan Matuszewski, Lik Shark, and Djamel Ait-Boudaoud. 3-d facial expression represen- tation using b-spline statistical shape model. 2007. 77

  45. [53]

    Evaluating the potential of chelation therapy to prevent and treat gadolinium deposition from mri contrast agents.Scientic reports, 8(1):4419, 2018

    Julian A Rees, Gauthier J-P Deblonde, Dahlia D An, Camille Ansoborlo, Stacey S Gauny, and Rebecca J Abergel. Evaluating the potential of chelation therapy to prevent and treat gadolinium deposition from mri contrast agents.Scientic reports, 8(1):4419, 2018

  46. [54]

    U-net: Convolutional networks for biomedical image segmentation

    Olaf Ronneberger, Philipp Fischer, and Thomas Brox. U-net: Convolutional networks for biomedical image segmentation. InMedical Image Computing and Computer-Assisted Intervention–MICCAI 2015: 18th International Conference, Munich, Germany, October 5-9, 2015, Proceedings, Part I...

  47. [55]

    Diagnostic and prognostic utility of cardiovascular magnetic resonance imaging in light-chain cardiac amyloidosis.The American journal of cardiology, 103(4):544– 549, 2009

    Frederick L Ruberg, Evan Appelbaum, Ravin Davido, Al Ozono, Kraig V Kissinger, Caitlin Harrigan, Martha Skinner, and Warren J Manning. Diagnostic and prognostic utility of cardiovascular magnetic resonance imaging in light-chain cardiac amyloidosis.The American journal of ca...

  48. [56]

    Magnetization evo- lution in balanced steady-state free precession with continuously moving table.Physics in Medicine & Biology, 52(8):N173, 2007

    Randall B Staord, Mohammad Sabati, Houman Mahallati, and Richard Frayne. Magnetization evo- lution in balanced steady-state free precession with continuously moving table.Physics in Medicine & Biology, 52(8):N173, 2007

  49. [57]

    Uk biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old age.PLoS medicine, 12(3):e1001779, 2015

    Cathie Sudlow, John Gallacher, Naomi Allen, Valerie Beral, Paul Burton, John Danesh, Paul Downey, Paul Elliott, Jane Green, Martin Landray, et al. Uk biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old age.PLoS medi...

  50. [58]

    Introduction: The challenge of reinforcement learning

    Richard S Sutton. Introduction: The challenge of reinforcement learning. InReinforcement learning, pages 1–3. Springer, 1992

  51. [59]

    Unsupervised machine learning for networking: Techniques, applications and research challenges.IEEE access, 7:65579–65615, 2019

    Muhammad Usama, Junaid Qadir, Aunn Raza, Hunain Arif, Kok-Lim Alvin Yau, Yehia Elkhatib, Amir Hussain, and Ala Al-Fuqaha. Unsupervised machine learning for networking: Techniques, applications and research challenges.IEEE access, 7:65579–65615, 2019

  52. [60]

    A survey on semi-supervised learning.Machine learning, 109(2):373–440, 2020

    Jesper E Van Engelen and Holger H Hoos. A survey on semi-supervised learning.Machine learning, 109(2):373–440, 2020

  53. [61]

    Principles of magnetic resonance imaging.Clinics in developmental medicine, pages 1–1, 1995

    Theodore Villafana. Principles of magnetic resonance imaging.Clinics in developmental medicine, pages 1–1, 1995

  54. [62]

    Signicance of late gadolinium en- hancement in cardiovascular magnetic resonance imaging (cmr).HERZ-MUNICH-, 32(2):129, 2007

    M V ˆAhringer, Heiko Mahrholdt, Ali Yilmaz, and Udo Sechtem. Signicance of late gadolinium en- hancement in cardiovascular magnetic resonance imaging (cmr).HERZ-MUNICH-, 32(2):129, 2007. 78

  55. [63]

    Volumetric magnetic resonance imaging: clinical applications and contributions to the understanding of temporal lobe epilepsy.Archives of neurology, 54(12):1521–1531, 1997

    Craig Watson, Cliord R Jack, and Fernando Cendes. Volumetric magnetic resonance imaging: clinical applications and contributions to the understanding of temporal lobe epilepsy.Archives of neurology, 54(12):1521–1531, 1997

  56. [64]

    Prog- nostic value of lge-cmr in hcm: a meta-analysis.JACC: Cardiovascular Imaging, 9(12):1392–1402, 2016

    Zhen Weng, Jialu Yao, Raymond H Chan, Jun He, Xiangjun Yang, Yafeng Zhou, and Yang He. Prog- nostic value of lge-cmr in hcm: a meta-analysis.JACC: Cardiovascular Imaging, 9(12):1392–1402, 2016

  57. [65]

    Hinrich B Winther, Christian Hundt, Bertil Schmidt, Christoph Czerner, Johann Bauersachs, Frank Wacker, and Jens Vogel-Claussen.ν-net: deep learning for generalized biventricular mass and function parameters using multicenter cardiac mri data.JACC: Cardiovascular Imaging, 11(7...

  58. [66]

    Reluplex made more practical: Leaky relu

    Jin Xu, Zishan Li, Bowen Du, Miaomiao Zhang, and Jing Liu. Reluplex made more practical: Leaky relu. In2020 IEEE Symposium on Computers and communications (ISCC), pages 1–7. IEEE, 2020

  59. [67]

    Convolutional neural networks: an overview and application in radiology.Insights into imaging, 9:611–629, 2018

    Rikiya Yamashita, Mizuho Nishio, Richard Kinh Gian Do, and Kaori Togashi. Convolutional neural networks: an overview and application in radiology.Insights into imaging, 9:611–629, 2018

  60. [68]

    Quicksilver: Fast predictive image registration–a deep learning approach.NeuroImage, 158:378–396, 2017

    Xiao Yang, Roland Kwitt, Martin Styner, and Marc Niethammer. Quicksilver: Fast predictive image registration–a deep learning approach.NeuroImage, 158:378–396, 2017

  61. [69]

    Articial intelligence-based myocardial texture analysis in etiological dierentiation of left ventricular hypertrophy.Annals of Translational Medicine, 9(2), 2021

    Fei Yu, Haibo Huang, Qihui Yu, Yuqing Ma, Qi Zhang, and Bo Zhang. Articial intelligence-based myocardial texture analysis in etiological dierentiation of left ventricular hypertrophy.Annals of Translational Medicine, 9(2), 2021

  62. [70]

    Motion artifacts in mri: A complex problem with many partial solutions.Journal of Magnetic Resonance Imaging, 42(4):887–901, 2015

    Maxim Zaitsev, Julian Maclaren, and Michael Herbst. Motion artifacts in mri: A complex problem with many partial solutions.Journal of Magnetic Resonance Imaging, 42(4):887–901, 2015

  63. [71]

    Fast and robust iterative closest point.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(7):3450–3466, 2021

    Juyong Zhang, Yuxin Yao, and Bailin Deng. Fast and robust iterative closest point.IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(7):3450–3466, 2021

  64. [72]

    Recursive cascaded networks for unsupervised medical image registration

    Shengyu Zhao, Yue Dong, Eric I Chang, Yan Xu, et al. Recursive cascaded networks for unsupervised medical image registration. InProceedings of the IEEE/CVF international conference on computer vision, pages 10600–10610, 2019

  65. [73]

    Unsupervised 3d end-to- end medical image registration with volume tweening network.IEEE journal of biomedical and health informatics, 24(5):1394–1404, 2019

    Shengyu Zhao, Tingfung Lau, Ji Luo, I Eric, Chao Chang, and Yan Xu. Unsupervised 3d end-to- end medical image registration with volume tweening network.IEEE journal of biomedical and health informatics, 24(5):1394–1404, 2019. 79 Appendix A 3D Strain Calculator Unit Tests 80 Fi...

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.