exposure.equalize_adapthist() problem

Hi,
after reinstalling, updating the skimage package version 0.9.x , I cannot get the function equalize_adapthist() to work like the example on the scikit-image webpage.
from skimage import exposure, data
img = data.moon()
img_adapteq = exposure.equalize_adapthist(img, clip_limit=0.03)
the following error is returned in the console:
img_adapteq = exposure.equalize_adapthist(img, clip_limit=0.03)
Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'module' object has no attribute 'equalize_adapthist'
Would you have any insight into which problem I am running? Thanks

Hi Simon,
How did you install it? What OS are you using? I just tried it using v0.9.3 from Anaconda on Windows 7, and it works just fine.
Regards,
Steve Silvester
participants (2)
-
Simon Filhol
-
Steven Silvester