Skip to content

Commit

Permalink
Empirical Otsu Sanity Check
Browse files Browse the repository at this point in the history
  • Loading branch information
JBeckwith committed Jun 12, 2024
1 parent 29213e5 commit 5e55209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DAB_Analysis_Functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def otsu_filtering(self, image):
if thresh > 0.025:
mask = holes > thresh
else:
mask = np.full_like(thresh, False)
mask = np.full_like(holes, False)
return mask

def analyse_DAB(self, img, filename):
Expand Down

0 comments on commit 5e55209

Please sign in to comment.