From 927d91239e9e374b36fead2f5c2e76b95f27b069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sat, 27 Apr 2013 17:26:01 +0200 Subject: [PATCH] Add __all__ to rank filter package --- skimage/filter/rank/__init__.py | 40 ++++++++++++++++++++++++++++++--- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/skimage/filter/rank/__init__.py b/skimage/filter/rank/__init__.py index 30d936db..8f632469 100644 --- a/skimage/filter/rank/__init__.py +++ b/skimage/filter/rank/__init__.py @@ -1,3 +1,37 @@ -from .rank import * -from .percentile_rank import * -from .bilateral_rank import * +from .rank import (autolevel, bottomhat, equalize, gradient, maximum, mean, + meansubstraction, median, minimum, modal, morph_contr_enh, + pop, threshold, tophat, noise_filter, entropy, otsu) +from .percentile_rank import (percentile_autolevel, percentile_gradient, + percentile_mean, percentile_mean_substraction, + percentile_morph_contr_enh, percentile, + percentile_pop, percentile_threshold) +from .bilateral_rank import bilateral_mean, bilateral_pop + + +__all__ = ['autolevel', + 'bottomhat', + 'equalize', + 'gradient', + 'maximum', + 'mean', + 'meansubstraction', + 'median', + 'minimum', + 'modal', + 'morph_contr_enh', + 'pop', + 'threshold', + 'tophat', + 'noise_filter', + 'entropy', + 'otsu', + 'percentile_autolevel', + 'percentile_gradient', + 'percentile_mean', + 'percentile_mean_substraction', + 'percentile_morph_contr_enh', + 'percentile', + 'percentile_pop', + 'percentile_threshold', + 'bilateral_mean', + 'bilateral_pop']