summaryrefslogtreecommitdiffstats
path: root/samples/python/s016_plots.py
diff options
context:
space:
mode:
authorDaniel M. Pelt <D.M.Pelt@cwi.nl>2015-05-26 10:30:47 +0200
committerDaniel M. Pelt <D.M.Pelt@cwi.nl>2015-05-26 10:30:47 +0200
commite9a75aa5dd890e4e062089729064d5d58659a074 (patch)
tree37d3a9856b51d1aa1c292f6f9687870274b4cbe9 /samples/python/s016_plots.py
parent658ee0d30d9f3f2d7b70ba698aa14af2a41aacc1 (diff)
downloadastra-e9a75aa5dd890e4e062089729064d5d58659a074.tar.gz
astra-e9a75aa5dd890e4e062089729064d5d58659a074.tar.bz2
astra-e9a75aa5dd890e4e062089729064d5d58659a074.tar.xz
astra-e9a75aa5dd890e4e062089729064d5d58659a074.zip
Fix Python samples for updated interface and old six versions
Diffstat (limited to 'samples/python/s016_plots.py')
-rw-r--r--samples/python/s016_plots.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/samples/python/s016_plots.py b/samples/python/s016_plots.py
index cd4d98c..8a8ba64 100644
--- a/samples/python/s016_plots.py
+++ b/samples/python/s016_plots.py
@@ -24,7 +24,11 @@
#
#-----------------------------------------------------------------------
-from six.moves import range
+try:
+ from six.moves import range
+except ImportError:
+ # six 1.3.0
+ from six.moves import xrange as range
import astra
import numpy as np
@@ -35,8 +39,8 @@ proj_geom = astra.create_proj_geom('parallel', 1.0, 384, np.linspace(0,np.pi,180
# As before, create a sinogram from a phantom
import scipy.io
P = scipy.io.loadmat('phantom.mat')['phantom256']
-proj_id = astra.create_projector('line',proj_geom,vol_geom)
-sinogram_id, sinogram = astra.create_sino(P, proj_id,useCUDA=True)
+proj_id = astra.create_projector('cuda',proj_geom,vol_geom)
+sinogram_id, sinogram = astra.create_sino(P, proj_id)
import pylab
pylab.gray()