diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2017-10-13 16:55:15 +0100 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2017-10-13 16:55:15 +0100 |
commit | 2353624fcb8241222e2044cb9d10ffa7c11c87c6 (patch) | |
tree | 5471bbff7c555cba749fc4c97f32104bd334e938 /src/Python/test | |
parent | 24598bda0c2983664f0c5e1aefa576e5d0a36db7 (diff) | |
download | regularization-2353624fcb8241222e2044cb9d10ffa7c11c87c6.tar.gz regularization-2353624fcb8241222e2044cb9d10ffa7c11c87c6.tar.bz2 regularization-2353624fcb8241222e2044cb9d10ffa7c11c87c6.tar.xz regularization-2353624fcb8241222e2044cb9d10ffa7c11c87c6.zip |
changes for vishighmem
Diffstat (limited to 'src/Python/test')
-rw-r--r-- | src/Python/test/readhd5.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Python/test/readhd5.py b/src/Python/test/readhd5.py index 1e19e14..406fda9 100644 --- a/src/Python/test/readhd5.py +++ b/src/Python/test/readhd5.py @@ -12,7 +12,7 @@ def getEntry(nx, location): for item in nx[location].keys(): print (item) -filename = r'C:\Users\ofn77899\Documents\GitHub\CCPi-FISTA_reconstruction\Demos\DendrData.h5' +filename = r'/home/ofn77899/Reconstruction/CCPi-FISTA_Reconstruction/demos/DendrData.h5' nx = h5py.File(filename, "r") #getEntry(nx, '/') # I have exported the entries as children of / @@ -25,4 +25,4 @@ angSize = numpy.asarray(nx.get('/angSize'), dtype=int)[0] angles_rad = numpy.asarray(nx.get('/angles_rad')) recon_size = numpy.asarray(nx.get('/recon_size'), dtype=int)[0] size_det = numpy.asarray(nx.get('/size_det'), dtype=int)[0] -slices_tot = numpy.asarray(nx.get('/slices_tot'), dtype=int)[0]
\ No newline at end of file +slices_tot = numpy.asarray(nx.get('/slices_tot'), dtype=int)[0] |