BUG: Rename modules with duplicate function names.

Modules with functions of the same name can cause confusion (in general) and causes issues when running `nosetests --with-doctest`.
This commit is contained in:
Tony S Yu
2012-08-02 22:49:53 -04:00
parent ab44219f0b
commit 13caa41fa7
4 changed files with 3 additions and 3 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
from .lpi_filter import *
from .ctmf import median_filter
from .canny import canny
from ._canny import canny
from .edges import sobel, hsobel, vsobel, hprewitt, vprewitt, prewitt
from .tv_denoise import tv_denoise
from .rank_order import rank_order
from ._tv_denoise import tv_denoise
from ._rank_order import rank_order
from .thresholding import threshold_otsu, threshold_adaptive