├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── build-test-package.yml │ └── clang-format-linter.yml ├── CMakeLists.txt ├── CTestConfig.cmake ├── LICENSE ├── README.rst ├── include ├── itkNormalizedCorrelationTwoImageToOneImageMetric.h ├── itkNormalizedCorrelationTwoImageToOneImageMetric.hxx ├── itkSiddonJacobsRayCastInterpolateImageFunction.h ├── itkSiddonJacobsRayCastInterpolateImageFunction.hxx ├── itkTwoImageToOneImageMetric.h ├── itkTwoImageToOneImageMetric.hxx ├── itkTwoProjectionImageRegistrationMethod.h └── itkTwoProjectionImageRegistrationMethod.hxx ├── itk-module.cmake ├── pyproject.toml ├── test ├── Baseline │ ├── BoxheadDRRFullDev1_G0_Reg-Author.tif.md5 │ ├── BoxheadDRRFullDev1_G90_Reg-Author.tif.md5 │ ├── BoxheadDRRFullDev1_G90_Reg.tif.md5 │ ├── boxheadDRRDev1_G0_Reg-Author.tif.md5 │ └── boxheadDRRDev1_G90_Reg-Author.tif.md5 ├── CMakeLists.txt ├── DicomSeriesReadNiftiImageWrite.cxx ├── Docker │ ├── Dockerfile │ ├── build.sh │ ├── run.sh │ └── test.sh ├── GetDRRSiddonJacobsRayTracing.cxx ├── Input │ ├── BoxheadCT.hdr.md5 │ ├── BoxheadCT.img.md5 │ ├── BoxheadCTFull.hdr.md5 │ ├── BoxheadCTFull.img.md5 │ ├── BoxheadDRRFullDev1_G0.tif.md5 │ ├── BoxheadDRRFullDev1_G90.tif.md5 │ ├── boxheadDRRDev1_G0.tif.md5 │ └── boxheadDRRDev1_G90.tif.md5 ├── ReadResampleWriteNifti.cxx └── TwoProjection2D3DRegistration.cxx └── wrapping ├── CMakeLists.txt ├── itkNormalizedCorrelationTwoImageToOneImageMetric.wrap ├── itkSiddonJacobsRayCastInterpolateImageFunction.wrap ├── itkTwoImageToOneImageMetric.wrap └── itkTwoProjectionImageRegistrationMethod.wrap /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/.github/workflows/build-test-package.yml -------------------------------------------------------------------------------- /.github/workflows/clang-format-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/.github/workflows/clang-format-linter.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/README.rst -------------------------------------------------------------------------------- /include/itkNormalizedCorrelationTwoImageToOneImageMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkNormalizedCorrelationTwoImageToOneImageMetric.h -------------------------------------------------------------------------------- /include/itkNormalizedCorrelationTwoImageToOneImageMetric.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkNormalizedCorrelationTwoImageToOneImageMetric.hxx -------------------------------------------------------------------------------- /include/itkSiddonJacobsRayCastInterpolateImageFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkSiddonJacobsRayCastInterpolateImageFunction.h -------------------------------------------------------------------------------- /include/itkSiddonJacobsRayCastInterpolateImageFunction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkSiddonJacobsRayCastInterpolateImageFunction.hxx -------------------------------------------------------------------------------- /include/itkTwoImageToOneImageMetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkTwoImageToOneImageMetric.h -------------------------------------------------------------------------------- /include/itkTwoImageToOneImageMetric.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkTwoImageToOneImageMetric.hxx -------------------------------------------------------------------------------- /include/itkTwoProjectionImageRegistrationMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkTwoProjectionImageRegistrationMethod.h -------------------------------------------------------------------------------- /include/itkTwoProjectionImageRegistrationMethod.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/include/itkTwoProjectionImageRegistrationMethod.hxx -------------------------------------------------------------------------------- /itk-module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/itk-module.cmake -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/Baseline/BoxheadDRRFullDev1_G0_Reg-Author.tif.md5: -------------------------------------------------------------------------------- 1 | 595272c3fa0752bd21949c8b6147a8ae 2 | -------------------------------------------------------------------------------- /test/Baseline/BoxheadDRRFullDev1_G90_Reg-Author.tif.md5: -------------------------------------------------------------------------------- 1 | 5f08d61e43c73c3f506af25d8b18f9b9 2 | -------------------------------------------------------------------------------- /test/Baseline/BoxheadDRRFullDev1_G90_Reg.tif.md5: -------------------------------------------------------------------------------- 1 | 5f08d61e43c73c3f506af25d8b18f9b9 -------------------------------------------------------------------------------- /test/Baseline/boxheadDRRDev1_G0_Reg-Author.tif.md5: -------------------------------------------------------------------------------- 1 | 367a10e5c06588b28e50b8d403aebce8 2 | -------------------------------------------------------------------------------- /test/Baseline/boxheadDRRDev1_G90_Reg-Author.tif.md5: -------------------------------------------------------------------------------- 1 | 526d1871124b36daf4d7558a13dd8743 2 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/DicomSeriesReadNiftiImageWrite.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/DicomSeriesReadNiftiImageWrite.cxx -------------------------------------------------------------------------------- /test/Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/Docker/Dockerfile -------------------------------------------------------------------------------- /test/Docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/Docker/build.sh -------------------------------------------------------------------------------- /test/Docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/Docker/run.sh -------------------------------------------------------------------------------- /test/Docker/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/Docker/test.sh -------------------------------------------------------------------------------- /test/GetDRRSiddonJacobsRayTracing.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/GetDRRSiddonJacobsRayTracing.cxx -------------------------------------------------------------------------------- /test/Input/BoxheadCT.hdr.md5: -------------------------------------------------------------------------------- 1 | bf888d8fb9d2bf4eabb9b7f2beb35208 2 | -------------------------------------------------------------------------------- /test/Input/BoxheadCT.img.md5: -------------------------------------------------------------------------------- 1 | 7fdaa6b03b27d795b9cdc097a47046ee 2 | -------------------------------------------------------------------------------- /test/Input/BoxheadCTFull.hdr.md5: -------------------------------------------------------------------------------- 1 | 02cf4333dea39d6c7fcd0b6bbec6515f 2 | -------------------------------------------------------------------------------- /test/Input/BoxheadCTFull.img.md5: -------------------------------------------------------------------------------- 1 | b4ed0e70fb4f381c7a3967c650b0a824 2 | -------------------------------------------------------------------------------- /test/Input/BoxheadDRRFullDev1_G0.tif.md5: -------------------------------------------------------------------------------- 1 | ebd2b58a0e7a58259939da4248fa108f 2 | -------------------------------------------------------------------------------- /test/Input/BoxheadDRRFullDev1_G90.tif.md5: -------------------------------------------------------------------------------- 1 | f89d9eb4b8f50cc92659eda0968110d0 -------------------------------------------------------------------------------- /test/Input/boxheadDRRDev1_G0.tif.md5: -------------------------------------------------------------------------------- 1 | e0391392a8e463e63c17b4bda0211cd0 2 | -------------------------------------------------------------------------------- /test/Input/boxheadDRRDev1_G90.tif.md5: -------------------------------------------------------------------------------- 1 | 034660fd002da511d8232692b85d6c3b 2 | -------------------------------------------------------------------------------- /test/ReadResampleWriteNifti.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/ReadResampleWriteNifti.cxx -------------------------------------------------------------------------------- /test/TwoProjection2D3DRegistration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/test/TwoProjection2D3DRegistration.cxx -------------------------------------------------------------------------------- /wrapping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/wrapping/CMakeLists.txt -------------------------------------------------------------------------------- /wrapping/itkNormalizedCorrelationTwoImageToOneImageMetric.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/wrapping/itkNormalizedCorrelationTwoImageToOneImageMetric.wrap -------------------------------------------------------------------------------- /wrapping/itkSiddonJacobsRayCastInterpolateImageFunction.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/wrapping/itkSiddonJacobsRayCastInterpolateImageFunction.wrap -------------------------------------------------------------------------------- /wrapping/itkTwoImageToOneImageMetric.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/wrapping/itkTwoImageToOneImageMetric.wrap -------------------------------------------------------------------------------- /wrapping/itkTwoProjectionImageRegistrationMethod.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsightSoftwareConsortium/ITKTwoProjectionRegistration/HEAD/wrapping/itkTwoProjectionImageRegistrationMethod.wrap --------------------------------------------------------------------------------