From 9133ab932c2761f7f7cbf1fa209c61599b46b58a Mon Sep 17 00:00:00 2001 From: cgohlke Date: Sat, 3 Dec 2011 15:46:41 -0800 Subject: [PATCH] Fix ImportError on Python 3 --- skimage/feature/greycomatrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/feature/greycomatrix.py b/skimage/feature/greycomatrix.py index 622787f1..5212cf63 100644 --- a/skimage/feature/greycomatrix.py +++ b/skimage/feature/greycomatrix.py @@ -6,7 +6,7 @@ properties to characterize image textures. import numpy as np import skimage.util -from _greycomatrix import _glcm_loop +from ._greycomatrix import _glcm_loop def greycomatrix(image, distances, angles, levels=256, symmetric=False,