diff options
author | Jakob Jorgensen <jakob.jorgensen@manchester.ac.uk> | 2018-04-24 11:19:38 +0100 |
---|---|---|
committer | Jakob Jorgensen <jakob.jorgensen@manchester.ac.uk> | 2018-04-24 11:19:38 +0100 |
commit | ef31e9ad903537dd9ad48ddbeb2dec7c7c9d2a0c (patch) | |
tree | 6e4c001c9ca7b1f8983e3af99f16c2f48340cef8 /Wrappers | |
parent | 01c34b4f293198c5a9ee25eda32ef6deed4bce85 (diff) | |
download | astra-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-x | Wrappers/Python/wip/demo_sophiabeads.py | 2 |
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) |