summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python/ccpi
diff options
context:
space:
mode:
authorJakob Jorgensen <jakob.jorgensen@manchester.ac.uk>2018-04-20 09:08:56 +0100
committerJakob Jorgensen <jakob.jorgensen@manchester.ac.uk>2018-04-20 09:08:56 +0100
commit679268b9582e6de7d780e2b3b482b84905bb7657 (patch)
treeb9496bf7c3c803652e3d9e560991d8b670188847 /Wrappers/Python/ccpi
parentada06499b6c2d4932f7f26a2f17d346d8135fb7b (diff)
parent510cb3e98b30184beab96f908c6105df1e348030 (diff)
downloadastra-wrapper-679268b9582e6de7d780e2b3b482b84905bb7657.tar.gz
astra-wrapper-679268b9582e6de7d780e2b3b482b84905bb7657.tar.bz2
astra-wrapper-679268b9582e6de7d780e2b3b482b84905bb7657.tar.xz
astra-wrapper-679268b9582e6de7d780e2b3b482b84905bb7657.zip
Merge branch 'master' into cleandemos
Diffstat (limited to 'Wrappers/Python/ccpi')
-rwxr-xr-x[-rw-r--r--]Wrappers/Python/ccpi/astra/ops.py (renamed from Wrappers/Python/ccpi/astra/astra_ops.py)6
-rw-r--r--Wrappers/Python/ccpi/astra/processors.py (renamed from Wrappers/Python/ccpi/astra/astra_processors.py)6
-rwxr-xr-x[-rw-r--r--]Wrappers/Python/ccpi/astra/utils.py (renamed from Wrappers/Python/ccpi/astra/astra_utils.py)0
3 files changed, 6 insertions, 6 deletions
diff --git a/Wrappers/Python/ccpi/astra/astra_ops.py b/Wrappers/Python/ccpi/astra/ops.py
index 45b8238..cd0ef9e 100644..100755
--- a/Wrappers/Python/ccpi/astra/astra_ops.py
+++ b/Wrappers/Python/ccpi/astra/ops.py
@@ -15,12 +15,12 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-from ccpi.reconstruction.ops import Operator
+from ccpi.optimisation.ops import Operator
import numpy
import astra
from ccpi.framework import AcquisitionData, ImageData, DataContainer
-from ccpi.reconstruction.ops import PowerMethodNonsquare
-from ccpi.astra.astra_processors import AstraForwardProjector, AstraBackProjector, \
+from ccpi.optimisation.ops import PowerMethodNonsquare
+from ccpi.astra.processors import AstraForwardProjector, AstraBackProjector, \
AstraForwardProjectorMC, AstraBackProjectorMC
class AstraProjectorSimple(Operator):
diff --git a/Wrappers/Python/ccpi/astra/astra_processors.py b/Wrappers/Python/ccpi/astra/processors.py
index fac4551..02c9070 100644
--- a/Wrappers/Python/ccpi/astra/astra_processors.py
+++ b/Wrappers/Python/ccpi/astra/processors.py
@@ -1,5 +1,5 @@
-from ccpi.framework import DataProcessor, ImageData, AcquisitionData
-from ccpi.astra.astra_utils import convert_geometry_to_astra
+from ccpi.framework import DataSetProcessor, ImageData, AcquisitionData
+from ccpi.astra.utils import convert_geometry_to_astra
import astra
@@ -202,4 +202,4 @@ class AstraBackProjectorMC(AstraBackProjector):
DATA.as_array()[k],
self.proj_id)
astra.data2d.delete(rec_id)
- return IM \ No newline at end of file
+ return IM
diff --git a/Wrappers/Python/ccpi/astra/astra_utils.py b/Wrappers/Python/ccpi/astra/utils.py
index 9f8fe46..9f8fe46 100644..100755
--- a/Wrappers/Python/ccpi/astra/astra_utils.py
+++ b/Wrappers/Python/ccpi/astra/utils.py