Merge pull request #53 from cgohlke/patch-1

Fix ImportError on Python 3
This commit is contained in:
Stefan van der Walt
2011-10-11 18:36:27 -07:00
+1 -1
View File
@@ -68,7 +68,7 @@ def greyscale_dilate(image, selem, out=None):
if image is out:
raise NotImplementedError("In-place dilation not supported!")
try:
import cmorph
from . import cmorph
out = cmorph.dilate(image, selem, out=out)
return out;
except ImportError: