Skip to content

Commit

Permalink
define how fluorescence data is stored
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Feb 12, 2019
1 parent 29c67d3 commit 0af9fc6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cellsino/sinogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@ def compute(self, angles, path=None, propagator="rytov"):
qps = qpimage.QPSeries(h5file=h5.require_group("qpseries"))
qps.add_qpimage(qpi)

h5fl = h5.require_group("fluorescence")
h5fl.create_dataset("{}".format(ii), data=fluor)
h5fl = h5.require_group("flseries")
h5fl.create_dataset("fl_{}".format(ii),
data=fluor,
fletcher32=True,
compression="gzip")
else:
sino_fields[ii] = qpi.field
sino_fluor[ii] = fluor
Expand Down

0 comments on commit 0af9fc6

Please sign in to comment.