Add threshold_minimum to try_all

This commit is contained in:
François Boulogne
2016-06-02 17:43:44 +02:00
parent 12fabff65f
commit 690db877fd
+1
View File
@@ -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)})