Skip to content

Commit

Permalink
Fixed bug in segment droplets
Browse files Browse the repository at this point in the history
  • Loading branch information
hlgirard committed May 9, 2019
1 parent 71fdcd5 commit aeccb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/segment_droplets.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def segment_droplets_to_file(image_filename, crop_box=None, save_overlay=False):
if not crop_box:
crop_box = select_rectangle(open_grey_scale_image(img_list[0]))

for image_file in tqdm(progress_bar):
for image_file in tqdm(img_list):
# Open image
image = open_grey_scale_image(image_file)

Expand Down

0 comments on commit aeccb2b

Please sign in to comment.