├── .gitignore ├── .readthedocs.yaml ├── BACKEND.md ├── CMakeLists.txt ├── Dockerfile ├── INTRO.md ├── LEAP_features.md ├── LICENSE ├── NOTICE ├── README.md ├── VAM ├── VAM.py └── testVAM.py ├── demo_leapctype ├── d01_standard_geometries.py ├── d02_standard_geometries_torch.py ├── d03_helical.py ├── d04_modularbeam.py ├── d05_3DflashCT.py ├── d06_ART.py ├── d07_symmetric_objects.py ├── d08_ray_tracing_simulation.py ├── d09_curved_polygon_detector_array.py ├── d10_fan_to_parallel_rebinning_and_cone-parallel.py ├── d11_fileIO.py ├── d12_geometric_calibration.py ├── d13_cropping_subchunking.py ├── d14_outlierCorrection.py ├── d15_detector_deblur.py ├── d16_ring_removal.py ├── d17_beam_hardening.py ├── d18_multi-materialBHC.py ├── d19_dual_energy_decomposition_and_SIRZ.py ├── d21_walnut.py ├── d22_truncatedScan.py ├── d23_offsetScan.py ├── d24_circle_plus_line.py ├── d25_detector_dithering.py ├── d26_preconditioners.py ├── d27_dictionaryDenoising.py ├── d28_BilateralFilter.py ├── d29_filter_sequence.py ├── d30_MAR_and_sinogram_replacement.py ├── d31_scatter_correction.py ├── d32_laminography.py ├── d33_reducingConeBeamArtifacts.py ├── d34_iterative_reconstruction_long_object.py ├── d35_volume_masking.py ├── d36_ball_phantom_calibration.py ├── d37_spectral_calibration.py ├── d98_SF_vs_VD.py ├── d99_speedTest.py └── sample_data │ ├── conebeam_geometry.txt │ └── readme.txt ├── demo_leaptorch ├── TVGPUClass.py ├── sample_data │ ├── conebeam_geometry.txt │ └── readme.txt ├── test_project_and_FBP.py ├── test_recon_NN.py ├── test_recon_TV.py └── test_recon_projections_NN.py ├── docs ├── Makefile ├── docs_requirements.txt ├── make.bat └── source │ ├── LEAPicon.png │ ├── LEAPoverview.png │ ├── conebeam_sketch.png │ ├── conf.py │ ├── ctgeometries.rst │ ├── ctsimulation.rst │ ├── ctvolume.rst │ ├── fbp.rst │ ├── fileIO.rst │ ├── filter_sequence.rst │ ├── filters.rst │ ├── highlevelfunctions.rst │ ├── index.rst │ ├── install.rst │ ├── iterative_reconstruction.rst │ ├── leapctype.rst │ ├── leaptorch.rst │ ├── physics_based_preprocessing_algorithms.rst │ ├── preprocessing_algorithms.rst │ ├── projection_filters_and_transforms.rst │ ├── projectors.rst │ └── volume_filters_and_transforms.rst ├── documentation ├── ESF.eps ├── ESF_zoom.eps ├── LEAP.pdf ├── LEAP.tex ├── LEAPoverview.png ├── MTF.eps ├── coneBeam.png ├── coneBeamSketch.tex ├── fanBeam.png ├── helical.png ├── modularBeam.png ├── modularBeam_cartoon.png ├── parallelBeam.png └── rampFilter.tex ├── etc ├── build.sh ├── win_build.bat ├── win_build_agn.bat └── win_build_vs_2022.bat ├── manual_install.py ├── requirements.txt ├── results ├── MTF_0.png ├── MTF_1.png ├── MTF_2.png ├── SF_vs_VD.md ├── noisey_0.png ├── noisey_1.png ├── noisey_2.png └── walnut_comparison.png ├── setup.cfg ├── setup.py ├── setup_AMD.py ├── setup_ctype.py ├── setup_old.py ├── src ├── CMakeLists.txt ├── __init__.py ├── analytic_ray_tracing.cpp ├── analytic_ray_tracing.h ├── analytic_ray_tracing_gpu.cu ├── analytic_ray_tracing_gpu.cuh ├── backprojectors_VD.cu ├── backprojectors_VD.cuh ├── bilateral_filter.cu ├── bilateral_filter.cuh ├── cpu_CMakeLists.txt ├── cpu_utils.cpp ├── cpu_utils.h ├── cuda_utils.cu ├── cuda_utils.h ├── file_io.cpp ├── file_io.h ├── filtered_backprojection.cpp ├── filtered_backprojection.h ├── find_center_cpu.cpp ├── find_center_cpu.h ├── geometric_calibration.cu ├── geometric_calibration.cuh ├── guided_filter.cu ├── guided_filter.cuh ├── hip_utils.h ├── leap_defines.h ├── leap_filter_sequence.py ├── leap_preprocessing_algorithms.py ├── leapctype.py ├── leaptorch.py ├── leaptorch_xyz.py ├── list_of_tomographic_models.cpp ├── list_of_tomographic_models.h ├── log.h ├── makefile ├── matching_pursuit.cu ├── matching_pursuit.cuh ├── noise_filters.cu ├── noise_filters.cuh ├── parameters.cpp ├── parameters.h ├── phantom.cpp ├── phantom.h ├── projectors.cpp ├── projectors.h ├── projectors_Joseph.cu ├── projectors_Joseph.cuh ├── projectors_Joseph_cpu.cpp ├── projectors_Joseph_cpu.h ├── projectors_Joseph_cpu_hip.h ├── projectors_SF.cu ├── projectors_SF.cuh ├── projectors_SF_cpu.cpp ├── projectors_SF_cpu.h ├── projectors_Siddon.cu ├── projectors_Siddon.cuh ├── projectors_Siddon_cpu.cpp ├── projectors_Siddon_cpu.h ├── projectors_attenuated.cu ├── projectors_attenuated.cuh ├── projectors_extendedSF.cu ├── projectors_extendedSF.cuh ├── projectors_symmetric.cu ├── projectors_symmetric.cuh ├── projectors_symmetric_cpu.cpp ├── projectors_symmetric_cpu.h ├── ramp_filter.cu ├── ramp_filter.cuh ├── ramp_filter_cpu.cpp ├── ramp_filter_cpu.h ├── ramp_filter_hip.cuh ├── ray_weighting.cu ├── ray_weighting.cuh ├── ray_weighting_cpu.cpp ├── ray_weighting_cpu.h ├── rebin.cpp ├── rebin.h ├── resample.cu ├── resample.cuh ├── resample_cpu.cpp ├── resample_cpu.h ├── scatter_models.cu ├── scatter_models.cuh ├── sensitivity.cu ├── sensitivity.cuh ├── sensitivity_cpu.cpp ├── sensitivity_cpu.h ├── sinogram_replacement.cpp ├── sinogram_replacement.h ├── tomographic_models.cpp ├── tomographic_models.h ├── tomographic_models_c_interface.cpp ├── tomographic_models_c_interface.h ├── total_variation.cu └── total_variation.cuh ├── unitTests ├── FORBILD_head.pd ├── FORBILD_head_noEar.pd ├── memory_leak_tests.py ├── unit_tests.py └── verificationTests.py └── utils ├── bridgeToLTT.py ├── generateDictionary.py ├── symmetric_projectors.py └── tigre_geometry_bridge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /BACKEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/BACKEND.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/Dockerfile -------------------------------------------------------------------------------- /INTRO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/INTRO.md -------------------------------------------------------------------------------- /LEAP_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/LEAP_features.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/README.md -------------------------------------------------------------------------------- /VAM/VAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/VAM/VAM.py -------------------------------------------------------------------------------- /VAM/testVAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/VAM/testVAM.py -------------------------------------------------------------------------------- /demo_leapctype/d01_standard_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d01_standard_geometries.py -------------------------------------------------------------------------------- /demo_leapctype/d02_standard_geometries_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d02_standard_geometries_torch.py -------------------------------------------------------------------------------- /demo_leapctype/d03_helical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d03_helical.py -------------------------------------------------------------------------------- /demo_leapctype/d04_modularbeam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d04_modularbeam.py -------------------------------------------------------------------------------- /demo_leapctype/d05_3DflashCT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d05_3DflashCT.py -------------------------------------------------------------------------------- /demo_leapctype/d06_ART.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d06_ART.py -------------------------------------------------------------------------------- /demo_leapctype/d07_symmetric_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d07_symmetric_objects.py -------------------------------------------------------------------------------- /demo_leapctype/d08_ray_tracing_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d08_ray_tracing_simulation.py -------------------------------------------------------------------------------- /demo_leapctype/d09_curved_polygon_detector_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d09_curved_polygon_detector_array.py -------------------------------------------------------------------------------- /demo_leapctype/d10_fan_to_parallel_rebinning_and_cone-parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d10_fan_to_parallel_rebinning_and_cone-parallel.py -------------------------------------------------------------------------------- /demo_leapctype/d11_fileIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d11_fileIO.py -------------------------------------------------------------------------------- /demo_leapctype/d12_geometric_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d12_geometric_calibration.py -------------------------------------------------------------------------------- /demo_leapctype/d13_cropping_subchunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d13_cropping_subchunking.py -------------------------------------------------------------------------------- /demo_leapctype/d14_outlierCorrection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d14_outlierCorrection.py -------------------------------------------------------------------------------- /demo_leapctype/d15_detector_deblur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d15_detector_deblur.py -------------------------------------------------------------------------------- /demo_leapctype/d16_ring_removal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d16_ring_removal.py -------------------------------------------------------------------------------- /demo_leapctype/d17_beam_hardening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d17_beam_hardening.py -------------------------------------------------------------------------------- /demo_leapctype/d18_multi-materialBHC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d18_multi-materialBHC.py -------------------------------------------------------------------------------- /demo_leapctype/d19_dual_energy_decomposition_and_SIRZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d19_dual_energy_decomposition_and_SIRZ.py -------------------------------------------------------------------------------- /demo_leapctype/d21_walnut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d21_walnut.py -------------------------------------------------------------------------------- /demo_leapctype/d22_truncatedScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d22_truncatedScan.py -------------------------------------------------------------------------------- /demo_leapctype/d23_offsetScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d23_offsetScan.py -------------------------------------------------------------------------------- /demo_leapctype/d24_circle_plus_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d24_circle_plus_line.py -------------------------------------------------------------------------------- /demo_leapctype/d25_detector_dithering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d25_detector_dithering.py -------------------------------------------------------------------------------- /demo_leapctype/d26_preconditioners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d26_preconditioners.py -------------------------------------------------------------------------------- /demo_leapctype/d27_dictionaryDenoising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d27_dictionaryDenoising.py -------------------------------------------------------------------------------- /demo_leapctype/d28_BilateralFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d28_BilateralFilter.py -------------------------------------------------------------------------------- /demo_leapctype/d29_filter_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d29_filter_sequence.py -------------------------------------------------------------------------------- /demo_leapctype/d30_MAR_and_sinogram_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d30_MAR_and_sinogram_replacement.py -------------------------------------------------------------------------------- /demo_leapctype/d31_scatter_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d31_scatter_correction.py -------------------------------------------------------------------------------- /demo_leapctype/d32_laminography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d32_laminography.py -------------------------------------------------------------------------------- /demo_leapctype/d33_reducingConeBeamArtifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d33_reducingConeBeamArtifacts.py -------------------------------------------------------------------------------- /demo_leapctype/d34_iterative_reconstruction_long_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d34_iterative_reconstruction_long_object.py -------------------------------------------------------------------------------- /demo_leapctype/d35_volume_masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d35_volume_masking.py -------------------------------------------------------------------------------- /demo_leapctype/d36_ball_phantom_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d36_ball_phantom_calibration.py -------------------------------------------------------------------------------- /demo_leapctype/d37_spectral_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d37_spectral_calibration.py -------------------------------------------------------------------------------- /demo_leapctype/d98_SF_vs_VD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d98_SF_vs_VD.py -------------------------------------------------------------------------------- /demo_leapctype/d99_speedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/d99_speedTest.py -------------------------------------------------------------------------------- /demo_leapctype/sample_data/conebeam_geometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/sample_data/conebeam_geometry.txt -------------------------------------------------------------------------------- /demo_leapctype/sample_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leapctype/sample_data/readme.txt -------------------------------------------------------------------------------- /demo_leaptorch/TVGPUClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/TVGPUClass.py -------------------------------------------------------------------------------- /demo_leaptorch/sample_data/conebeam_geometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/sample_data/conebeam_geometry.txt -------------------------------------------------------------------------------- /demo_leaptorch/sample_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/sample_data/readme.txt -------------------------------------------------------------------------------- /demo_leaptorch/test_project_and_FBP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/test_project_and_FBP.py -------------------------------------------------------------------------------- /demo_leaptorch/test_recon_NN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/test_recon_NN.py -------------------------------------------------------------------------------- /demo_leaptorch/test_recon_TV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/test_recon_TV.py -------------------------------------------------------------------------------- /demo_leaptorch/test_recon_projections_NN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/demo_leaptorch/test_recon_projections_NN.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/docs_requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | torch 3 | imageio 4 | scipy 5 | matplotlib 6 | sphinx-rtd-theme 7 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/LEAPicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/LEAPicon.png -------------------------------------------------------------------------------- /docs/source/LEAPoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/LEAPoverview.png -------------------------------------------------------------------------------- /docs/source/conebeam_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/conebeam_sketch.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/ctgeometries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/ctgeometries.rst -------------------------------------------------------------------------------- /docs/source/ctsimulation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/ctsimulation.rst -------------------------------------------------------------------------------- /docs/source/ctvolume.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/ctvolume.rst -------------------------------------------------------------------------------- /docs/source/fbp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/fbp.rst -------------------------------------------------------------------------------- /docs/source/fileIO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/fileIO.rst -------------------------------------------------------------------------------- /docs/source/filter_sequence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/filter_sequence.rst -------------------------------------------------------------------------------- /docs/source/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/filters.rst -------------------------------------------------------------------------------- /docs/source/highlevelfunctions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/highlevelfunctions.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/iterative_reconstruction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/iterative_reconstruction.rst -------------------------------------------------------------------------------- /docs/source/leapctype.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/leapctype.rst -------------------------------------------------------------------------------- /docs/source/leaptorch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/leaptorch.rst -------------------------------------------------------------------------------- /docs/source/physics_based_preprocessing_algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/physics_based_preprocessing_algorithms.rst -------------------------------------------------------------------------------- /docs/source/preprocessing_algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/preprocessing_algorithms.rst -------------------------------------------------------------------------------- /docs/source/projection_filters_and_transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/projection_filters_and_transforms.rst -------------------------------------------------------------------------------- /docs/source/projectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/projectors.rst -------------------------------------------------------------------------------- /docs/source/volume_filters_and_transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/docs/source/volume_filters_and_transforms.rst -------------------------------------------------------------------------------- /documentation/ESF.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/ESF.eps -------------------------------------------------------------------------------- /documentation/ESF_zoom.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/ESF_zoom.eps -------------------------------------------------------------------------------- /documentation/LEAP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/LEAP.pdf -------------------------------------------------------------------------------- /documentation/LEAP.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/LEAP.tex -------------------------------------------------------------------------------- /documentation/LEAPoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/LEAPoverview.png -------------------------------------------------------------------------------- /documentation/MTF.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/MTF.eps -------------------------------------------------------------------------------- /documentation/coneBeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/coneBeam.png -------------------------------------------------------------------------------- /documentation/coneBeamSketch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/coneBeamSketch.tex -------------------------------------------------------------------------------- /documentation/fanBeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/fanBeam.png -------------------------------------------------------------------------------- /documentation/helical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/helical.png -------------------------------------------------------------------------------- /documentation/modularBeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/modularBeam.png -------------------------------------------------------------------------------- /documentation/modularBeam_cartoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/modularBeam_cartoon.png -------------------------------------------------------------------------------- /documentation/parallelBeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/parallelBeam.png -------------------------------------------------------------------------------- /documentation/rampFilter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/documentation/rampFilter.tex -------------------------------------------------------------------------------- /etc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/etc/build.sh -------------------------------------------------------------------------------- /etc/win_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/etc/win_build.bat -------------------------------------------------------------------------------- /etc/win_build_agn.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/etc/win_build_agn.bat -------------------------------------------------------------------------------- /etc/win_build_vs_2022.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/etc/win_build_vs_2022.bat -------------------------------------------------------------------------------- /manual_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/manual_install.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/MTF_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/MTF_0.png -------------------------------------------------------------------------------- /results/MTF_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/MTF_1.png -------------------------------------------------------------------------------- /results/MTF_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/MTF_2.png -------------------------------------------------------------------------------- /results/SF_vs_VD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/SF_vs_VD.md -------------------------------------------------------------------------------- /results/noisey_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/noisey_0.png -------------------------------------------------------------------------------- /results/noisey_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/noisey_1.png -------------------------------------------------------------------------------- /results/noisey_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/noisey_2.png -------------------------------------------------------------------------------- /results/walnut_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/results/walnut_comparison.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/setup.py -------------------------------------------------------------------------------- /setup_AMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/setup_AMD.py -------------------------------------------------------------------------------- /setup_ctype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/setup_ctype.py -------------------------------------------------------------------------------- /setup_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/setup_old.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/analytic_ray_tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/analytic_ray_tracing.cpp -------------------------------------------------------------------------------- /src/analytic_ray_tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/analytic_ray_tracing.h -------------------------------------------------------------------------------- /src/analytic_ray_tracing_gpu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/analytic_ray_tracing_gpu.cu -------------------------------------------------------------------------------- /src/analytic_ray_tracing_gpu.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/analytic_ray_tracing_gpu.cuh -------------------------------------------------------------------------------- /src/backprojectors_VD.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/backprojectors_VD.cu -------------------------------------------------------------------------------- /src/backprojectors_VD.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/backprojectors_VD.cuh -------------------------------------------------------------------------------- /src/bilateral_filter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/bilateral_filter.cu -------------------------------------------------------------------------------- /src/bilateral_filter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/bilateral_filter.cuh -------------------------------------------------------------------------------- /src/cpu_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/cpu_CMakeLists.txt -------------------------------------------------------------------------------- /src/cpu_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/cpu_utils.cpp -------------------------------------------------------------------------------- /src/cpu_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/cpu_utils.h -------------------------------------------------------------------------------- /src/cuda_utils.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/cuda_utils.cu -------------------------------------------------------------------------------- /src/cuda_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/cuda_utils.h -------------------------------------------------------------------------------- /src/file_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/file_io.cpp -------------------------------------------------------------------------------- /src/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/file_io.h -------------------------------------------------------------------------------- /src/filtered_backprojection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/filtered_backprojection.cpp -------------------------------------------------------------------------------- /src/filtered_backprojection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/filtered_backprojection.h -------------------------------------------------------------------------------- /src/find_center_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/find_center_cpu.cpp -------------------------------------------------------------------------------- /src/find_center_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/find_center_cpu.h -------------------------------------------------------------------------------- /src/geometric_calibration.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/geometric_calibration.cu -------------------------------------------------------------------------------- /src/geometric_calibration.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/geometric_calibration.cuh -------------------------------------------------------------------------------- /src/guided_filter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/guided_filter.cu -------------------------------------------------------------------------------- /src/guided_filter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/guided_filter.cuh -------------------------------------------------------------------------------- /src/hip_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/hip_utils.h -------------------------------------------------------------------------------- /src/leap_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leap_defines.h -------------------------------------------------------------------------------- /src/leap_filter_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leap_filter_sequence.py -------------------------------------------------------------------------------- /src/leap_preprocessing_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leap_preprocessing_algorithms.py -------------------------------------------------------------------------------- /src/leapctype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leapctype.py -------------------------------------------------------------------------------- /src/leaptorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leaptorch.py -------------------------------------------------------------------------------- /src/leaptorch_xyz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/leaptorch_xyz.py -------------------------------------------------------------------------------- /src/list_of_tomographic_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/list_of_tomographic_models.cpp -------------------------------------------------------------------------------- /src/list_of_tomographic_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/list_of_tomographic_models.h -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/log.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/makefile -------------------------------------------------------------------------------- /src/matching_pursuit.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/matching_pursuit.cu -------------------------------------------------------------------------------- /src/matching_pursuit.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/matching_pursuit.cuh -------------------------------------------------------------------------------- /src/noise_filters.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/noise_filters.cu -------------------------------------------------------------------------------- /src/noise_filters.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/noise_filters.cuh -------------------------------------------------------------------------------- /src/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/parameters.cpp -------------------------------------------------------------------------------- /src/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/parameters.h -------------------------------------------------------------------------------- /src/phantom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/phantom.cpp -------------------------------------------------------------------------------- /src/phantom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/phantom.h -------------------------------------------------------------------------------- /src/projectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors.cpp -------------------------------------------------------------------------------- /src/projectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors.h -------------------------------------------------------------------------------- /src/projectors_Joseph.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Joseph.cu -------------------------------------------------------------------------------- /src/projectors_Joseph.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Joseph.cuh -------------------------------------------------------------------------------- /src/projectors_Joseph_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Joseph_cpu.cpp -------------------------------------------------------------------------------- /src/projectors_Joseph_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Joseph_cpu.h -------------------------------------------------------------------------------- /src/projectors_Joseph_cpu_hip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Joseph_cpu_hip.h -------------------------------------------------------------------------------- /src/projectors_SF.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_SF.cu -------------------------------------------------------------------------------- /src/projectors_SF.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_SF.cuh -------------------------------------------------------------------------------- /src/projectors_SF_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_SF_cpu.cpp -------------------------------------------------------------------------------- /src/projectors_SF_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_SF_cpu.h -------------------------------------------------------------------------------- /src/projectors_Siddon.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Siddon.cu -------------------------------------------------------------------------------- /src/projectors_Siddon.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Siddon.cuh -------------------------------------------------------------------------------- /src/projectors_Siddon_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Siddon_cpu.cpp -------------------------------------------------------------------------------- /src/projectors_Siddon_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_Siddon_cpu.h -------------------------------------------------------------------------------- /src/projectors_attenuated.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_attenuated.cu -------------------------------------------------------------------------------- /src/projectors_attenuated.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_attenuated.cuh -------------------------------------------------------------------------------- /src/projectors_extendedSF.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_extendedSF.cu -------------------------------------------------------------------------------- /src/projectors_extendedSF.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_extendedSF.cuh -------------------------------------------------------------------------------- /src/projectors_symmetric.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_symmetric.cu -------------------------------------------------------------------------------- /src/projectors_symmetric.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_symmetric.cuh -------------------------------------------------------------------------------- /src/projectors_symmetric_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_symmetric_cpu.cpp -------------------------------------------------------------------------------- /src/projectors_symmetric_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/projectors_symmetric_cpu.h -------------------------------------------------------------------------------- /src/ramp_filter.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ramp_filter.cu -------------------------------------------------------------------------------- /src/ramp_filter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ramp_filter.cuh -------------------------------------------------------------------------------- /src/ramp_filter_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ramp_filter_cpu.cpp -------------------------------------------------------------------------------- /src/ramp_filter_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ramp_filter_cpu.h -------------------------------------------------------------------------------- /src/ramp_filter_hip.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ramp_filter_hip.cuh -------------------------------------------------------------------------------- /src/ray_weighting.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ray_weighting.cu -------------------------------------------------------------------------------- /src/ray_weighting.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ray_weighting.cuh -------------------------------------------------------------------------------- /src/ray_weighting_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ray_weighting_cpu.cpp -------------------------------------------------------------------------------- /src/ray_weighting_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/ray_weighting_cpu.h -------------------------------------------------------------------------------- /src/rebin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/rebin.cpp -------------------------------------------------------------------------------- /src/rebin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/rebin.h -------------------------------------------------------------------------------- /src/resample.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/resample.cu -------------------------------------------------------------------------------- /src/resample.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/resample.cuh -------------------------------------------------------------------------------- /src/resample_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/resample_cpu.cpp -------------------------------------------------------------------------------- /src/resample_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/resample_cpu.h -------------------------------------------------------------------------------- /src/scatter_models.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/scatter_models.cu -------------------------------------------------------------------------------- /src/scatter_models.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/scatter_models.cuh -------------------------------------------------------------------------------- /src/sensitivity.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sensitivity.cu -------------------------------------------------------------------------------- /src/sensitivity.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sensitivity.cuh -------------------------------------------------------------------------------- /src/sensitivity_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sensitivity_cpu.cpp -------------------------------------------------------------------------------- /src/sensitivity_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sensitivity_cpu.h -------------------------------------------------------------------------------- /src/sinogram_replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sinogram_replacement.cpp -------------------------------------------------------------------------------- /src/sinogram_replacement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/sinogram_replacement.h -------------------------------------------------------------------------------- /src/tomographic_models.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/tomographic_models.cpp -------------------------------------------------------------------------------- /src/tomographic_models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/tomographic_models.h -------------------------------------------------------------------------------- /src/tomographic_models_c_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/tomographic_models_c_interface.cpp -------------------------------------------------------------------------------- /src/tomographic_models_c_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/tomographic_models_c_interface.h -------------------------------------------------------------------------------- /src/total_variation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/total_variation.cu -------------------------------------------------------------------------------- /src/total_variation.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/src/total_variation.cuh -------------------------------------------------------------------------------- /unitTests/FORBILD_head.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/unitTests/FORBILD_head.pd -------------------------------------------------------------------------------- /unitTests/FORBILD_head_noEar.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/unitTests/FORBILD_head_noEar.pd -------------------------------------------------------------------------------- /unitTests/memory_leak_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/unitTests/memory_leak_tests.py -------------------------------------------------------------------------------- /unitTests/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/unitTests/unit_tests.py -------------------------------------------------------------------------------- /unitTests/verificationTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/unitTests/verificationTests.py -------------------------------------------------------------------------------- /utils/bridgeToLTT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/utils/bridgeToLTT.py -------------------------------------------------------------------------------- /utils/generateDictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/utils/generateDictionary.py -------------------------------------------------------------------------------- /utils/symmetric_projectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/utils/symmetric_projectors.py -------------------------------------------------------------------------------- /utils/tigre_geometry_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/LEAP/HEAD/utils/tigre_geometry_bridge.py --------------------------------------------------------------------------------