diff options
Diffstat (limited to 'Wrappers/Python/wip')
-rwxr-xr-x | Wrappers/Python/wip/demo_astra_mc.py | 2 | ||||
-rw-r--r-- | Wrappers/Python/wip/demo_astra_nexus.py | 2 | ||||
-rwxr-xr-x | Wrappers/Python/wip/demo_astra_simple.py | 2 | ||||
-rwxr-xr-x | Wrappers/Python/wip/demo_astra_sophiabeads.py | 2 | ||||
-rw-r--r-- | Wrappers/Python/wip/demo_astra_sophiabeads3D.py | 2 | ||||
-rw-r--r-- | Wrappers/Python/wip/work_out_adjoint.py | 2 | ||||
-rw-r--r-- | Wrappers/Python/wip/work_out_adjoint3D.py | 2 | ||||
-rw-r--r-- | Wrappers/Python/wip/work_out_adjoint_sophiabeads.py | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/Wrappers/Python/wip/demo_astra_mc.py b/Wrappers/Python/wip/demo_astra_mc.py index f09dcb8..e5999de 100755 --- a/Wrappers/Python/wip/demo_astra_mc.py +++ b/Wrappers/Python/wip/demo_astra_mc.py @@ -8,7 +8,7 @@ from ccpi.framework import ImageData, AcquisitionData, ImageGeometry, AcquisitionGeometry from ccpi.optimisation.algs import FISTA from ccpi.optimisation.funcs import Norm2sq, Norm1 -from ccpi.astra.ops import AstraProjectorMC +from ccpi.astra.operators import AstraProjectorMC import numpy import matplotlib.pyplot as plt diff --git a/Wrappers/Python/wip/demo_astra_nexus.py b/Wrappers/Python/wip/demo_astra_nexus.py index 1db44c0..7892d24 100644 --- a/Wrappers/Python/wip/demo_astra_nexus.py +++ b/Wrappers/Python/wip/demo_astra_nexus.py @@ -15,7 +15,7 @@ from ccpi.plugins.ops import CCPiProjectorSimple from ccpi.processors import Normalizer, CenterOfRotationFinder from ccpi.plugins.processors import AcquisitionDataPadder from ccpi.io.reader import NexusReader -from ccpi.astra.ops import AstraProjector3DSimple +from ccpi.astra.operators import AstraProjector3DSimple # All external imports import numpy diff --git a/Wrappers/Python/wip/demo_astra_simple.py b/Wrappers/Python/wip/demo_astra_simple.py index c1dd877..57caaee 100755 --- a/Wrappers/Python/wip/demo_astra_simple.py +++ b/Wrappers/Python/wip/demo_astra_simple.py @@ -8,7 +8,7 @@ from ccpi.framework import ImageData , ImageGeometry, AcquisitionGeometry from ccpi.optimisation.algs import FISTA, FBPD, CGLS from ccpi.optimisation.funcs import Norm2sq, Norm1, TV2D -from ccpi.astra.ops import AstraProjectorSimple +from ccpi.astra.operators import AstraProjectorSimple import numpy as np import matplotlib.pyplot as plt diff --git a/Wrappers/Python/wip/demo_astra_sophiabeads.py b/Wrappers/Python/wip/demo_astra_sophiabeads.py index bcc775e..b72a5f9 100755 --- a/Wrappers/Python/wip/demo_astra_sophiabeads.py +++ b/Wrappers/Python/wip/demo_astra_sophiabeads.py @@ -11,7 +11,7 @@ from ccpi.io.reader import XTEKReader import numpy as np import matplotlib.pyplot as plt from ccpi.framework import ImageGeometry, AcquisitionGeometry, AcquisitionData, ImageData -from ccpi.astra.ops import AstraProjectorSimple +from ccpi.astra.operators import AstraProjectorSimple from ccpi.optimisation.algs import CGLS # Set up reader object and read the data diff --git a/Wrappers/Python/wip/demo_astra_sophiabeads3D.py b/Wrappers/Python/wip/demo_astra_sophiabeads3D.py index edfe1b9..8c43657 100644 --- a/Wrappers/Python/wip/demo_astra_sophiabeads3D.py +++ b/Wrappers/Python/wip/demo_astra_sophiabeads3D.py @@ -11,7 +11,7 @@ from ccpi.io.reader import XTEKReader import numpy as np import matplotlib.pyplot as plt from ccpi.framework import ImageGeometry, AcquisitionData, ImageData -from ccpi.astra.ops import AstraProjector3DSimple +from ccpi.astra.operators import AstraProjector3DSimple from ccpi.optimisation.algs import CGLS import numpy diff --git a/Wrappers/Python/wip/work_out_adjoint.py b/Wrappers/Python/wip/work_out_adjoint.py index 34d58ff..276fb76 100644 --- a/Wrappers/Python/wip/work_out_adjoint.py +++ b/Wrappers/Python/wip/work_out_adjoint.py @@ -8,7 +8,7 @@ from ccpi.framework import ImageData , ImageGeometry, AcquisitionGeometry, AcquisitionData from ccpi.optimisation.algs import FISTA, FBPD, CGLS from ccpi.optimisation.funcs import Norm2sq, Norm1, TV2D -from ccpi.astra.ops import AstraProjectorSimple +from ccpi.astra.operators import AstraProjectorSimple import numpy as np import matplotlib.pyplot as plt diff --git a/Wrappers/Python/wip/work_out_adjoint3D.py b/Wrappers/Python/wip/work_out_adjoint3D.py index 162e55a..0e4f847 100644 --- a/Wrappers/Python/wip/work_out_adjoint3D.py +++ b/Wrappers/Python/wip/work_out_adjoint3D.py @@ -8,7 +8,7 @@ from ccpi.framework import ImageData , ImageGeometry, AcquisitionGeometry, AcquisitionData from ccpi.optimisation.algs import FISTA, FBPD, CGLS from ccpi.optimisation.funcs import Norm2sq, Norm1, TV2D -from ccpi.astra.ops import AstraProjector3DSimple +from ccpi.astra.operators import AstraProjector3DSimple import numpy as np import matplotlib.pyplot as plt diff --git a/Wrappers/Python/wip/work_out_adjoint_sophiabeads.py b/Wrappers/Python/wip/work_out_adjoint_sophiabeads.py index 2492826..7f35a16 100644 --- a/Wrappers/Python/wip/work_out_adjoint_sophiabeads.py +++ b/Wrappers/Python/wip/work_out_adjoint_sophiabeads.py @@ -8,7 +8,7 @@ from ccpi.framework import ImageData , ImageGeometry, AcquisitionGeometry, AcquisitionData from ccpi.optimisation.algs import FISTA, FBPD, CGLS from ccpi.optimisation.funcs import Norm2sq, Norm1, TV2D -from ccpi.astra.ops import AstraProjectorSimple +from ccpi.astra.operators import AstraProjectorSimple import numpy as np import matplotlib.pyplot as plt |