Skip to content

Commit

Permalink
bug fix yeaz tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
ElpadoCan committed Jan 28, 2022
1 parent d54d00d commit f9417a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cellacdc/models/YeaZ/unet/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def correspondence_stack(stack, signals=None):
corrects correspondence of a stack of segmented and labeled masks, by
fitting the hungarian iteratively on the stack
"""
corrected_stack = np.empty(stack.shape)
corrected_stack = np.empty(stack.shape, dtype=np.uint16)
corrected_stack[0] = stack[0]
for idx in range(len(stack)):
try:
Expand Down

0 comments on commit f9417a8

Please sign in to comment.