Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed Nov 27, 2024
1 parent f14da39 commit 3a8489b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/motile_toolbox/utils/relabel_segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def ensure_unique_labels(
multiple hypotheses in the first dimension. Defaults to False.
"""
segmentation = segmentation.astype(np.uint64)
print(np.unique(segmentation[1], return_counts=True))
orig_shape = segmentation.shape
if multiseg:
segmentation = segmentation.reshape((-1, *orig_shape[2:]))
Expand All @@ -66,6 +65,4 @@ def ensure_unique_labels(
segmentation[idx] = frame
if multiseg:
segmentation = segmentation.reshape(orig_shape)
print(np.unique(segmentation[1], return_counts=True))
print(np.unique(segmentation[1], return_counts=True))
return segmentation

0 comments on commit 3a8489b

Please sign in to comment.