Skip to content

Commit

Permalink
Fix scales in image_labeling_whole_well (ref #104), making scale fact…
Browse files Browse the repository at this point in the history
…ors float
  • Loading branch information
tcompa committed Jul 15, 2022
1 parent 20371d2 commit 12deb67
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions fractal/tasks/image_labeling_whole_well.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,12 @@ def image_labeling_whole_well(
"type": "scale",
"scale": [
1.0,
coarsening_xy ** (labeling_level + ind_level),
coarsening_xy ** (labeling_level + ind_level),
1.0
* coarsening_xy
** (labeling_level + ind_level),
1.0
* coarsening_xy
** (labeling_level + ind_level),
],
}
],
Expand Down

0 comments on commit 12deb67

Please sign in to comment.