Fix ImportError on Python 3

This commit is contained in:
cgohlke
2011-12-03 15:47:22 -08:00
parent 9133ab932c
commit 14c89fefa5
+1 -1
View File
@@ -5,7 +5,7 @@ Algorithms for computing the skeleton of a binary image
import numpy as np
from scipy import ndimage
from _skeletonize import _skeletonize_loop, _table_lookup_index
from ._skeletonize import _skeletonize_loop, _table_lookup_index
# --------- Skeletonization by morphological thinning ---------