mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-19 11:27:45 +08:00
Fix ImportError on Python 3
This commit is contained in:
committed by
Stefan van der Walt
parent
d0fdee5d93
commit
3f52256e6f
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user