Remove thresholding subpackage and integrate into filter subpackage.

This commit is contained in:
Tony S Yu
2011-12-11 17:04:46 -05:00
parent e7d37997d9
commit d9186c90a1
4 changed files with 2 additions and 3 deletions
+1
View File
@@ -4,3 +4,4 @@ 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 thresholding import threshold_otsu
@@ -2,7 +2,7 @@ import numpy as np
import skimage
from skimage import data
from skimage.thresholding import threshold_otsu
from skimage.filter.thresholding import threshold_otsu
class TestSimpleImage():
-2
View File
@@ -1,2 +0,0 @@
from .thresholding import threshold_otsu