├── LICENSE.md ├── README.rst ├── backprojector_cone.py ├── backprojector_fan.py ├── check_gradients.py ├── data ├── image.npy ├── image_cone.npy ├── projection_matrices.npy ├── sinogram.npy ├── sinogram_cone.npy ├── sinogram_filtered.npy └── sinogram_filtered_cone.npy ├── example.py ├── geometry.py ├── gradients.py ├── helper.py └── optimization.gif /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/README.rst -------------------------------------------------------------------------------- /backprojector_cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/backprojector_cone.py -------------------------------------------------------------------------------- /backprojector_fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/backprojector_fan.py -------------------------------------------------------------------------------- /check_gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/check_gradients.py -------------------------------------------------------------------------------- /data/image.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/image.npy -------------------------------------------------------------------------------- /data/image_cone.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/image_cone.npy -------------------------------------------------------------------------------- /data/projection_matrices.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/projection_matrices.npy -------------------------------------------------------------------------------- /data/sinogram.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/sinogram.npy -------------------------------------------------------------------------------- /data/sinogram_cone.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/sinogram_cone.npy -------------------------------------------------------------------------------- /data/sinogram_filtered.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/sinogram_filtered.npy -------------------------------------------------------------------------------- /data/sinogram_filtered_cone.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/data/sinogram_filtered_cone.npy -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/example.py -------------------------------------------------------------------------------- /geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/geometry.py -------------------------------------------------------------------------------- /gradients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/gradients.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/helper.py -------------------------------------------------------------------------------- /optimization.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareikethies/geometry_gradients_CT/HEAD/optimization.gif --------------------------------------------------------------------------------