I am building code on python using skimage. But I am getting import errors while using skimage.segmentation.
Traceback (most recent call last):
File "superpixel.py", line 5, in
from skimage.segmentation import slic
ImportError: No module named skimage.segmentation
You can use pip install scikit-image
.
Also see the recommended procedure.