diff --git a/skimage/filter/thresholding.py b/skimage/filter/thresholding.py index 51907347..4e3ebca3 100644 --- a/skimage/filter/thresholding.py +++ b/skimage/filter/thresholding.py @@ -1,10 +1,8 @@ +__all__ = ['threshold_otsu', 'threshold_adaptive'] + import numpy as np import scipy.ndimage from skimage.exposure import histogram -from ._thresholding import _threshold_adaptive - - -__all__ = ['threshold_otsu', 'threshold_adaptive'] def threshold_adaptive(image, block_size, method='gaussian', offset=0,