mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-31 12:41:20 +08:00
Fix ImportError on Python 3
This commit is contained in:
@@ -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