From 12669d62e699313ca0f73de1b211bf438f4efb0c Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 30 Apr 2012 12:08:02 -0700 Subject: [PATCH] BUG: Remove import of non-existent module. --- skimage/filter/thresholding.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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,