From 7fec88fc82982de1a8e4df959e905f77b7fa7977 Mon Sep 17 00:00:00 2001 From: radioxoma Date: Sun, 29 Dec 2013 18:29:51 +0300 Subject: [PATCH] fix threshold_yen import --- skimage/filter/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/skimage/filter/__init__.py b/skimage/filter/__init__.py index cef9b2e2..fed8a83b 100644 --- a/skimage/filter/__init__.py +++ b/skimage/filter/__init__.py @@ -9,7 +9,7 @@ from ._denoise import denoise_tv_chambolle from ._denoise_cy import denoise_bilateral, denoise_tv_bregman from ._rank_order import rank_order from ._gabor import gabor_kernel, gabor_filter -from .thresholding import threshold_otsu, threshold_adaptive +from .thresholding import threshold_adaptive, threshold_otsu, threshold_yen from . import rank @@ -37,6 +37,7 @@ __all__ = ['inverse', 'rank_order', 'gabor_kernel', 'gabor_filter', - 'threshold_otsu', 'threshold_adaptive', + 'threshold_otsu', + 'threshold_yen', 'rank']