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