diff options
-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) |