Pith. sign in

REVIEW 3 major objections 6 minor 6 cited by

TorchRadon: Fast Differentiable Routines for Computed Tomography

T0 review · 3 major / 6 minor · reviewed 2026-08-27 · deepseek-v4-flash

Pith's one-line read TorchRadon makes CT forward and back projections differentiable, GPU-resident, and up to 125× faster than the comparison toolbox, so they can act as trainable layers inside neural networks and power iterative reconstruction.

desk verdict TorchRadon is a genuinely useful, openly released PyTorch library for differentiable CT operators, but the headline 125x speed claim is under-specified without Astra's GPU configuration and the gradient correctness is asserted rather than tested. read the letter →

arxiv 2009.14788 v1 pith:DJIBQQ6U submitted 2020-09-29 eess.IV cs.CVcs.LG

classification eess.IVcs.CVcs.LG
keywords computedtomographydifferentiableprogrammingRadontransformbackprojectionGPUaccelerationCUDAkernelsshearletiterativereconstruction
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

TorchRadon is an open-source GPU library that implements computed-tomography operations as differentiable routines, so Radon forward projection, backprojection, and shearlet transforms can sit inside a deep network and receive gradients through the ordinary backward pass. The paper's central claim is that these operators are both fast and accurate: up to 125 times faster than the comparison toolbox for projection and backprojection, more than 2.5 times faster again in half precision, and close enough numerically that filtered-backprojection reconstruction error is essentially unchanged. The paper supports this with numerical comparisons of projections, filtered backprojection, and shearlet coefficients, and with a shearlet-regularized limited-angle reconstruction that runs in seconds rather than minutes. If the claims hold, researchers can combine deep learning with model-based CT reconstruction without writing custom gradient code or shuttling data between CPU and GPU.

What carries the argument

The load-bearing mechanism is a set of custom CUDA kernels for Radon transforms whose inputs are stored in CUDA textures, a read-only memory layout that caches two-dimensional neighborhoods and improves hit rates for line integrals. When given half-precision input, the kernels pack four images into the color channels of a single texture, cutting memory reads by a factor of four, and upconvert to single precision for all arithmetic. These kernels are wrapped as automatic-differentiation-aware operations, so the same code path that computes a projection also computes its gradient via the framework's backward pass, and batched execution keeps the GPU fully occupied. The same GPU-resident, batched design carries the shearlet transform and the iterative solvers, which is what lets an ADMM reconstruction loop run without CPU-GPU copies.

What would settle it

Re-run the paper's batch forward and backprojection benchmarks with the comparison toolbox using its GPU backend and GPU-resident data; if the speedup over that baseline does not approach 40× in single precision or 125× in half precision, the central speed claim is not supported. A second decisive check would compare TorchRadon's backward pass to finite-difference gradients of its forward operator, since the paper does not report such a check.

Watch

Extended reading notes

Core claim

The central contribution is a set of differentiable CUDA routines for computed tomography: parallel-beam and fan-beam Radon forward projection, backprojection, filtered backprojection with standard filters, shearlet transforms, and the iterative solvers Landweber, CGNE, and conjugate gradient. The author's claim is that because these routines are registered with the automatic differentiation system, gradients can be computed automatically through them, and because input data stays resident on the GPU, is processed in batches, and is read through texture-cached memory, they run up to 125 times faster than the comparison toolbox under the paper's benchmarks. Numerically, the paper reports relative errors of about $8\times10^{-4}$ against the comparison toolbox for forward projections and $4\times10^{-5}$ for backprojections, nearly identical filtered-backprojection reconstruction error ($2.22\times10^{-4}$ versus $2.02\times10^{-4}$ mean squared error), and shearlet coefficients matching to $3.86\times10^{-7}$ in single precision. Half-precision storage more than doubles speed while leaving the filtered-backprojection reconstruction error essentially unchanged, at $2.0567\times10^{-4}$ versus $2.0566\times10^{-4}$ in single precision.

Load-bearing premise

The load-bearing premise is that the comparison toolbox was benchmarked in its best-performing GPU configuration, since the paper never states whether its GPU backend was used when the 40× to 125× speedups were measured.

Editorial extensions

If this is right

  • Radon forward projection, backprojection, and shearlet transforms become drop-in layers for end-to-end training, with gradients obtained by the framework's ordinary backward pass rather than hand-derived code.
  • Iterative reconstruction algorithms such as Landweber, CGNE, and conjugate gradient run entirely on GPU and support batched data, so a model-based reconstruction can be called within a training loop without CPU-GPU copies.
  • A shearlet-regularized limited-angle CT pipeline reimplemented with the library runs in about 1.6 seconds on a server GPU versus 2.5 minutes reported on CPU for the original implementation, and batch processing brings the average to about 1.2 seconds per image.
  • Half-precision storage gives more than 2.5 times the speed of single precision for memory-bound Radon transforms while keeping filtered-backprojection reconstruction quality effectively identical, so precision can be traded for speed in large runs.

Reading between the lines

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

  • Since the underlying kernels are differentiable and exposed to the autograd system, the same design could be extended to make acquisition geometry (angles, detector positions, source trajectories) learnable parameters for limited-view CT.
  • The half-precision texture-packing trick is a general recipe for memory-bound integral operators; analogous packing could speed up line-integral transforms in electron microscopy, seismic imaging, or synchrotron tomography.
  • The paper does not report a finite-difference check of its backward pass, so a direct numerical gradient comparison would settle whether the differentiability claim holds in floating-point practice.
  • If the measured speedups generalize to other geometries and problem sizes, unrolled optimization networks could afford many more iterations per forward pass, shifting the practical balance between learned and model-based reconstruction.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Request a human review

A listed scientist reviews the paper for a fee and the review publishes here regardless of verdict. See the reviewers or get listed.

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. The paper introduces TorchRadon, an open-source CUDA-based PyTorch extension providing differentiable Radon forward/backprojection, fan-beam projection, shearlet transforms, and iterative solvers for CT reconstruction. The main claims are that the library is up to 125× faster than Astra Toolbox for Radon projections, that its operators integrate with PyTorch autograd so gradients can be computed via backward(), and that half-precision storage gives large speedups with negligible accuracy loss. Numerical comparisons are reported against Astra Toolbox for parallel-beam and fan-beam projections and FBP, and against AlphaTransforms for shearlets. A use case reproduces a shearlet-regularized ADMM reconstruction, reporting a 125× speedup over the runtime reported in the original paper.

Significance. If the claims are substantiated, TorchRadon would be a practically valuable tool for researchers combining deep learning with model-based CT reconstruction, since differentiable GPU-resident forward operators are a bottleneck for such work. The paper makes concrete empirical comparisons against external libraries (Astra Toolbox and AlphaTransforms), the source code is publicly available, and the reported numerical errors are small. However, two load-bearing aspects are under-supported: the headline speedup benchmark is not specified enough to be reproduced or interpreted, and the differentiability claim is asserted without any numerical or analytical verification of the backward pass. The central idea is plausible and the reported comparisons are a good start, but the manuscript needs additional methodological detail before the main claims can be accepted.

major comments (3)
  1. [Section 4.1, Figure 13] The benchmark underlying the headline speedup is under-specified. The text states that TorchRadon processes a batch of 32 continuous GPU arrays, but it never states Astra Toolbox's version, which projector kernel was used (e.g., 'cuda', 'linear', or 'strip'), whether Astra data were GPU-resident through its own GPU/OpenCL backend, how batching was emulated for Astra, how many timing repetitions were performed, or whether error bars were computed. Without these details, the reported 40× and 125× speedups could reflect differences in API overhead or CPU-GPU copies rather than algorithmic performance. Figure 13 also appears to show only single timing points without error bars, making it impossible to assess the stability of the claimed ratios.
  2. [Section 2 and Section 3] The differentiability claim is not verified. The paper states that TorchRadon operators allow gradient computation via PyTorch backward(), and this is a central advertised feature, but no numerical gradient check or adjoint-test is reported for the Radon forward/backprojection or shearlet transforms. A finite-difference comparison (e.g., ||g_analytic - g_numeric|| / ||g_numeric|| for random inputs) or a consistency check of the backward pass against the adjoint of the forward operator should be added; without this, the reader cannot confirm that the autograd integration is correct.
  3. [Section 4.3] The second 125× claim compares TorchRadon's runtime to the 2.5-minute runtime reported in the original paper on an Intel i7 CPU, not to a directly benchmarked implementation of the same algorithm on the same hardware. The manuscript says 'Compared to an implementation made using Astra and AlphaTransforms' but such an implementation is not actually timed. This comparison is suggestive but not a controlled benchmark; the authors should either run the reference implementation on the same machine or clearly label the comparison as a cross-hardware, cross-implementation estimate rather than a measured speedup.
minor comments (6)
  1. [Abstract and Section 2] The abstract says 'up to 125 faster' without the multiplication sign, and Section 2 likewise states 'up to 125 × faster'; the distinction between the half-precision 125× figure and the single-precision 40× figure should be stated in the abstract as well, since the current phrasing could mislead a reader into attributing 125× to the default single-precision mode.
  2. [Section 4.3 code listing] The code listing has apparent typos: 'clamp min' should be 'clamp_min', and the variable 'n angles' appears to be undefined, likely intended to be 'n_angles'. Please correct the listing so that the example is runnable as printed.
  3. [Section 3.1 heading] The heading reads 'Filtered Bacprojetion'; this should be 'Filtered Backprojection'.
  4. [Section 4.3 bullet list] The second bullet reads 'There are are no CPU-GPU memory copies'; the duplicated word 'are' should be removed.
  5. [Reference [4]] Reference [4] is incomplete: the journal name is missing (it should be Inverse Problems).
  6. [Section 4.1, Figure 13] Figure 13 would benefit from explicit axis labels and units (e.g., milliseconds or seconds), and from a statement of the number of trials and hardware/software versions in the caption or text.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the paper's claims are direct measurements against external tools and implementations, with no fitted parameters or self-referential derivation.

full rationale

TorchRadon's central claims are empirical: speedups of 40x-125x over Astra Toolbox, numerical agreement with Astra and AlphaTransforms, and reconstruction quality metrics. All of these are measured comparisons against external, independently developed libraries, not quantities derived from the paper's own assumptions. The accuracy figures (relative errors, MSE) are direct outputs of running both implementations. The speed claims are benchmark measurements, and while the Astra configuration is under-specified in the paper, that is a reproducibility or measurement-fairness concern, not a circular one. The differentiability claim (autograd integration) is asserted but not numerically verified; again, this is a missing validation, not an input-output equivalence. There are no self-citations, no fitted parameters masquerading as predictions, and no equations where the conclusion is equivalent to the premises. The paper is self-contained against external benchmarks, so the circularity score is 0.

Assumptions & free parameters 0 free parameters · 3 assumptions · 0 invented entities

The central claims are empirical: speed and correctness. They rest on external reference implementations and the correctness of the CUDA kernels, not on a mathematical derivation. No new entities or fitted parameters are introduced.

assumptions (3)
  • domain assumption Astra Toolbox outputs are treated as ground truth for validating Radon and FBP implementations.
    Section 3.1 computes relative errors between TorchRadon and Astra; this presumes Astra is correct enough to serve as reference.
  • domain assumption AlphaTransforms coefficients are treated as ground truth for shearlet correctness.
    Section 3.2 compares shearlet coefficients and reconstructions against AlphaTransforms, assuming the reference library is correct.
  • domain assumption PyTorch autograd correctly composes custom backward functions.
    The library relies on PyTorch's automatic differentiation machinery, but no gradient checks against finite differences are provided.

how reviews work

0 comments
Cite this review

Pith. "Pith review of TorchRadon: Fast Differentiable Routines for Computed Tomography." pith.science (2026). https://pith.science/paper/DJIBQQ6U

@misc{pith2026200914788,
  author       = {Pith},
  title        = {Pith review of: TorchRadon: Fast Differentiable Routines for Computed Tomography},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/DJIBQQ6U}},
  note         = {Machine review of arXiv:2009.14788}
}
read the original abstract

This work presents TorchRadon -- an open source CUDA library which contains a set of differentiable routines for solving computed tomography (CT) reconstruction problems. The library is designed to help researchers working on CT problems to combine deep learning and model-based approaches. The package is developed as a PyTorch extension and can be seamlessly integrated into existing deep learning training code. Compared to the existing Astra Toolbox, TorchRadon is up to 125 faster. The operators implemented by TorchRadon allow the computation of gradients using PyTorch backward(), and can therefore be easily inserted inside existing neural networks architectures. Because of its speed and GPU support, TorchRadon can also be effectively used as a fast backend for the implementation of iterative algorithms. This paper presents the main functionalities of the library, compares results with existing libraries and provides examples of usage.

Figures

Figures reproduced from arXiv: 2009.14788 by the authors.

Figure 1
Figure 1. The classic Shepp-Logan phantom projections with a very small accuracy loss. Refer to section 3.3 for more details about the loss of numerical accuracy. 2.1 Package Structure The library is divided into submodules grouped by functionality: • torch radon: main module containing Radon projections. Currently parallel beam and fan-beam projections are implemented. • torch radon.shearlets: GPU implementa￾tion of Alpha Sh… view at source ↗
Figure 2
Figure 2. Visualization of parallel beam projec￾tion. Results of forward projection on the phantom are visualized in [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Comparison of forward Radon transform with parallel beam projection. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: Comparison of backward Radon transform with parallel beam projection. [PITH_FULL_IMAGE:figures/full_fig_p004_4.png]
Figure 5
Figure 5. Figure 5: Visualization of fan-beam projection. sino = radon.forward(x) # Radon backward projection bp = radon.backprojection(sino) In the above code we made use of TorchRadon’s RadonFanbeam default values: det distance by default is assumed equal to source distance and det spac…
Figure 6
Figure 6. Figure 6: Comparison of forward Radon transform with fan-beam projection. [PITH_FULL_IMAGE:figures/full_fig_p005_6.png]
Figure 7
Figure 7. Figure 7: Comparison of backward Radon transform with fan-beam projection. [PITH_FULL_IMAGE:figures/full_fig_p005_7.png]
Figure 8
Figure 8. Figure 8: Comparison of reconstructions using FBP with Ram-Lak filter. [PITH_FULL_IMAGE:figures/full_fig_p005_8.png]
Figure 9
Figure 9. Figure 9: 12 coefficients of the shearlet transform of the Shepp-Logan phantom. [PITH_FULL_IMAGE:figures/full_fig_p007_9.png]
Figure 10
Figure 10. Figure 10: Shearlet reconstructions obtained by AlphaTransforms and [PITH_FULL_IMAGE:figures/full_fig_p007_10.png]
Figure 11
Figure 11. Figure 11: Comparison between sinograms obtained using single precision (32bits) and half precision [PITH_FULL_IMAGE:figures/full_fig_p007_11.png]
Figure 12
Figure 12. Figure 12: Comparison between FBP reconstructions obtained using single precision (32bits) and half [PITH_FULL_IMAGE:figures/full_fig_p007_12.png]
Figure 13
Figure 13. Figure 13: Comparison of the speed of Torch Radon and Astra Toolbox on a modern server GPU (Tesla [PITH_FULL_IMAGE:figures/full_fig_p009_13.png]
Figure 14
Figure 14. Figure 14: Comparison between the reconstructions obtained using Filtered Backprojection and the [PITH_FULL_IMAGE:figures/full_fig_p010_14.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 6 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. Noise-Inspired Diffusion Model for Generalizable Low-Dose CT Reconstruction

    eess.IV 2025-06 conditional novelty 7.0 of 10

    A dual-domain diffusion model trained only on normal-dose CT data generalizes to unseen low-dose levels by matching Poisson noise in projections and refining images with double guidance.

  2. Continuous 3-D Latent Diffusion for Medical Image Generation and Reconstruction

    physics.med-ph 2026-07 conditional novelty 6.0 of 10

    A coordinate-conditioned implicit decoder makes 3D latent diffusion practical on a single GPU, autoencoding 512^3 CT in about 10 s while supporting both generation and measurement-guided reconstruction from one frozen prior.

  3. Cross-view Generalized Diffusion Model for Sparse-view CT Reconstruction

    eess.IV 2025-08 conditional novelty 6.0 of 10

    CvG-Diff reformulates sparse-view CT reconstruction as a deterministic generalized diffusion process, achieving 38.34 dB PSNR for 18-view CT in 10 steps on AAPM-LDCT.

  4. Unsupervised Self-Prior Embedding Neural Representation for Iterative Sparse-View CT Reconstruction

    eess.IV 2025-02 conditional novelty 5.0 of 10

    Spener is an unsupervised iterative network that uses a self-generated prior image to stabilize sparse-view CT reconstruction, matching or beating supervised baselines.

  5. Ambient Denoising Diffusion Generative Adversarial Networks for Establishing Stochastic Object Models from Noisy Image Data

    cs.CV 2025-01 conditional novelty 5.0 of 10

    ADDGAN learns clean image distributions from noisy CT and DBT measurements by feeding generated objects through the known imaging operator, and it beats AmbientGAN baselines on FID and observer-task metrics.

  6. Solving Blind Inverse Problems: Adaptive Diffusion Models for Motion-corrected Sparse-view 4DCT

    physics.med-ph 2025-01 conditional novelty 5.0 of 10

    A diffusion-based method that jointly reconstructs motion-corrected sparse-view 4DCT images and estimates respiratory motion, outperforming three baselines on XCAT phantoms.

Reference graph

Works this paper leans on

25 extracted references · 25 canonical work pages · cited by 6 Pith papers

  1. [1]

    Simon Arridge, Peter Maass, Ozan ¨Oktem, and Carola-Bibiane Sch¨ onlieb, Solving in- verse problems using data-driven models , Acta Numerica 28 (2019), 1–174. 1

  2. [2]

    T. A. Bubba, M. M¨ arz, Z. Purisha, M. Las- sas, and S. Siltanen, Shearlet-based regu- larization in sparse dynamic tomography , Wavelets and Sparsity XVII (Yue M. Lu, Dimitri Van De Ville, and Manos Papadakis, eds.), vol. 10394, International Society for Optics and Photonics, SPIE, 2017, pp. 236 –

  3. [3]

    Tatiana A Bubba, Mathilde Galinier, Matti Lassas, Marco Prato, Luca Ratti, and Samuli Siltanen, Deep neural networks for inverse problems with pseudodifferential operators: an application to limited-angle tomography , arXiv preprint arXiv:2006.01620 (2020). 1

  4. [4]

    6, 064002

    Tatiana A Bubba, Gitta Kutyniok, Matti Lassas, Maximilian M¨ arz, Wojciech Samek, Samuli Siltanen, and Vignesh Srinivasan, Learning the invisible: A hybrid deep learning-shearlet framework for limited an- gle computed tomography , 35 (2019), no. 6, 064002. 1, 2, 8, 9, 10

  5. [5]

    Tatiana A. Bubba, Federica Porta, Gae- tano Zanghirati, and Silvia Bonettini, A nonsmooth regularization approach based on shearlets for poisson noise removal in roi to- mography, Applied Mathematics and Com- putation 318 (2018), 131 – 152, Recent Trends in Numerical Computations: Theory and Algorithms. 1, 2

  6. [6]

    Candes and David L

    Emmanuel J. Candes and David L. Donoho, Curvelets and reconstruction of images from noisy radon data , Wavelet Applications in Signal and Image Processing VIII (Akram Aldroubi, Andrew F. Laine, and Michael A. Unser, eds.), vol. 4119, International Soci- ety for Optics and Photonics, SPIE, 2000, pp. 108 – 117. 1

  7. [7]

    2, 232 – 250

    Flavia Colonna, Glenn Easley, Kanghui Guo, and Demetrio Labate, Radon transform in- version using the shearlet representation , Applied and Computational Harmonic Anal- ysis 29 (2010), no. 2, 232 – 250. 1, 2

  8. [8]

    Davison, The ill-conditioned na- ture of the limited angle tomography problem, 10 SIAM Journal on Applied Mathematics 43 (1983), no

    Mark E. Davison, The ill-conditioned na- ture of the limited angle tomography problem, 10 SIAM Journal on Applied Mathematics 43 (1983), no. 2, 428–448. 1

Show all 25 references
  1. [9]

    Jim Douglas, Alternating direction methods for three space variables , Numer. Math. 4 (1962), no. 1, 41–63. 9

  2. [10]

    G. R. Easley, D. Labate, and F. Colonna, Shearlet-based total variation diffusion for denoising, IEEE Transactions on Image Pro- cessing 18 (2009), no. 2, 260–268. 2

  3. [11]

    Karol Gregor and Yann LeCun, Learning fast approximations of sparse coding , Pro- ceedings of the 27th International Confer- ence on International Conference on Machine Learning (Madison, WI, USA), ICML’10, Omnipress, 2010, p. 399–406. 1

  4. [12]

    Hanke, Conjugate gradient type methods for ill-posed problems., New York: Chapman and Hall/CRC

    M. Hanke, Conjugate gradient type methods for ill-posed problems., New York: Chapman and Hall/CRC. 2, 8

  5. [13]

    John D Hunter, Matplotlib: A 2d graphics environment, Computing in science & engi- neering 9 (2007), no. 3, 90. 3

  6. [14]

    A. C. Kak and Malcolm Slaney, Principles of computerized tomographic imaging , IEEE Press, 1998. 4

  7. [15]

    Petersen, Regularization and nu- merical solution of the inverse scattering problem using shearlet frames, Journal of In- verse and Ill-posed Problems 25 (01 Jun

    Gitta Kutyniok, Volker Mehrmann, and Philipp C. Petersen, Regularization and nu- merical solution of the inverse scattering problem using shearlet frames, Journal of In- verse and Ill-posed Problems 25 (01 Jun. 2017), no. 3, 287 – 309. 2

  8. [16]

    Landweber, An iteration formula for fred- holm integral equations of the first kind , American Journal of Mathematics73 (1951), no

    L. Landweber, An iteration formula for fred- holm integral equations of the first kind , American Journal of Mathematics73 (1951), no. 3, 615–624. 2, 8

  9. [17]

    5, 055005

    Stefan Loock and Gerlind Plonka, Phase retrieval for fresnel measurements using a shearlet sparsity constraint , Inverse Prob- lems 30 (2014), no. 5, 055005. 2

  10. [18]

    Ignace Loris, Guust Nolet, Ingrid Daubechies, and F. A. Dahlen, Tomographic inversion using 𝓁1-norm regularization of wavelet coefficients , Geophysical Journal International 170 (2007), no. 1, 359–370. 1

  11. [19]

    M. T. McCann, K. H. Jin, and M. Unser, Convolutional neural networks for inverse problems in imaging: A review , IEEE Sig- nal Processing Magazine 34 (2017), no. 6, 85–95. 1

  12. [20]

    1781–1790

    Tim Meinhardt, Michael Moller, Caner Hazirbas, and Daniel Cremers, Learning proximal operators: Using denoising net- works for regularizing inverse imaging prob- lems, Proceedings of the IEEE Interna- tional Conference on Computer Vision, 2017, pp. 1781–1790. 1

  13. [21]

    Adam Paszke, Sam Gross, Soumith Chin- tala, Gregory Chanan, Edward Yang, Zachary DeVito, Zeming Lin, Alban Desmai- son, Luca Antiga, and Adam Lerer, Auto- matic differentiation in PyTorch , NIPS Au- todiff Workshop, 2017. 1, 2

  14. [22]

    Python Core Team, Python: A dynamic, open source programming language , Python Software Foundation, 2019. 2

  15. [23]

    Joost Batenburg, and Jan Si- jbers, Fast and flexible x-ray tomography us- ing the astra toolbox, Opt

    Wim van Aarle, Willem Jan Palenstijn, Jeroen Cant, Eline Janssens, Folkert Ble- ichrodt, Andrei Dabravolski, Jan De Been- houwer, K. Joost Batenburg, and Jan Si- jbers, Fast and flexible x-ray tomography us- ing the astra toolbox, Opt. Express24 (2016), no. 22, 25129–25147. 2

  16. [24]

    Joost Batenburg, and Jan Sijbers, The astra toolbox: A platform for advanced algorithm development in electron tomogra- phy, Ultramicroscopy 157 (2015), 35 – 47

    Wim van Aarle, Willem Jan Palenstijn, Jan De Beenhouwer, Thomas Altantzis, Sara Bals, K. Joost Batenburg, and Jan Sijbers, The astra toolbox: A platform for advanced algorithm development in electron tomogra- phy, Ultramicroscopy 157 (2015), 35 – 47. 2

  17. [25]

    Yan Yang, Jian Sun, Huibin Li, and Zong- ben Xu, Deep admm-net for compressive sensing mri , Proceedings of the 30th In- ternational Conference on Neural Informa- tion Processing Systems (Red Hook, NY, USA), NIPS’16, Curran Associates Inc., 2016, p. 10–18. 1 11

Pith tools

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