Skip to content

Commit

Permalink
Fix bug in image_labeling_whole_well (ref #112 #115)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompa committed Jul 21, 2022
1 parent 51739e7 commit 12e267e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fractal/tasks/image_labeling_whole_well.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ def image_labeling_whole_well(
if t["type"] == "scale":
new_t = {"type": "scale"}
new_t["scale"] = [
t[0],
t[1] * coarsening_xy**labeling_level,
t[2] * coarsening_xy**labeling_level,
t["scale"][0],
t["scale"][1] * coarsening_xy**labeling_level,
t["scale"][2] * coarsening_xy**labeling_level,
]
new_transformations.append(new_t)
else:
Expand Down

0 comments on commit 12e267e

Please sign in to comment.