diff --git a/skimage/filters/thresholding.py b/skimage/filters/thresholding.py index eb21ffbb..06dd5cbc 100644 --- a/skimage/filters/thresholding.py +++ b/skimage/filters/thresholding.py @@ -131,6 +131,7 @@ def try_all_threshold(image, radius=None, figsize=(8, 5), verbose=True): # Global algorithms. methods = OrderedDict({'Isodata': thresh(threshold_isodata), 'Li': thresh(threshold_li), + 'Minimum': thresh(threshold_minimum), 'Otsu': thresh(threshold_otsu), 'Yen': thresh(threshold_yen)})