Fix ImportError on Python 3

This commit is contained in:
cgohlke
2011-10-12 13:16:39 -07:00
committed by Stefan van der Walt
parent d0fdee5d93
commit 3f52256e6f
+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: