Skip to content
Snippets Groups Projects
Commit c69b45b9 authored by Yb Tweezer's avatar Yb Tweezer
Browse files

don't subtract the background from the background image

parent c8b2c2f5
No related branches found
No related tags found
No related merge requests found
...@@ -193,7 +193,8 @@ class FluorescenceData(ImagingData): ...@@ -193,7 +193,8 @@ class FluorescenceData(ImagingData):
self.results = dict() if self.results is None else self.results self.results = dict() if self.results is None else self.results
self.results.update({ self.results.update({
label: { label: {
"N": float(N) - float(N_bkgd), "N": float(N) - float(N_bkgd)
if label != "background" else float(N),
"sx": float(sx), "sx": float(sx),
"sy": float(sy) "sy": float(sy)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment