summaryrefslogtreecommitdiffstats
path: root/Wrappers
diff options
context:
space:
mode:
authorJakob Jorgensen <jakob.jorgensen@manchester.ac.uk>2018-04-24 11:19:38 +0100
committerJakob Jorgensen <jakob.jorgensen@manchester.ac.uk>2018-04-24 11:19:38 +0100
commitef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c (patch)
tree6e4c001c9ca7b1f8983e3af99f16c2f48340cef8 /Wrappers
parent01c34b4f293198c5a9ee25eda32ef6deed4bce85 (diff)
downloadastra-wrapper-ef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c.tar.gz
astra-wrapper-ef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c.tar.bz2
astra-wrapper-ef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c.tar.xz
astra-wrapper-ef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c.zip
Fix camel case io
Diffstat (limited to 'Wrappers')
-rwxr-xr-xWrappers/Python/wip/demo_sophiabeads.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/wip/demo_sophiabeads.py b/Wrappers/Python/wip/demo_sophiabeads.py
index 53a0bf8..4a0f963 100755
--- a/Wrappers/Python/wip/demo_sophiabeads.py
+++ b/Wrappers/Python/wip/demo_sophiabeads.py
@@ -16,7 +16,7 @@ from ccpi.optimisation.algs import CGLS
# Set up reader object and read the data
datareader = XTEKReader("REPLACE_THIS_BY_PATH_TO_DATASET/SophiaBeads_256_averaged.xtekct")
-data = datareader.getAcquisitionData()
+data = datareader.get_acquisition_data()
# Extract central slice, scale and negative-log transform
sino = -np.log(data.as_array()[:,:,1000]/60000.0)