From 690db877fd3737c58e4a8f12c6833659afbbcb58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Thu, 2 Jun 2016 17:43:44 +0200 Subject: [PATCH] Add threshold_minimum to try_all --- skimage/filters/thresholding.py | 1 + 1 file changed, 1 insertion(+) 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)})