Skip to content

drgHannah/Radon-Transformation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Radon Transformation

A Pytorch implementation of the radon operator and filtered backprojection with, except for a constant, adjoint radon operator and backprojection.

Alt text

Install

pip install ./Radon-Transformation/

Usage

from radon_transformation.radon import get_operators

input = # Load some input of shape (bsz x 1 x w x h)

radon_op, fbp_op = get_operators(n_angles=200, image_size=input.shape[-1], device='cuda')
sino = radon_op(input)
reconstructed = fbp_op(sino)

About

A Pytorch implementation of the radon operator and filtered backprojection with, except for a constant, adjoint radon operator and backprojection.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published