Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaRenauld committed Mar 12, 2024
1 parent 361b993 commit dee858f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/scil_visualize_histogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def main():
mask = get_data_as_mask(nib.load(args.in_mask))

# Select value from mask
curr_data = metric_img_data[mask]
curr_data = metric_img_data[np.where(mask > 0)]

# Display figure
fig, ax = plt.subplots()
Expand Down

0 comments on commit dee858f

Please sign in to comment.