Akihiro
0
Q:

skimage python

sudo pip3 install scikit-image
2
git clone https://github.com/scikit-image/scikit-image.git
cd scikit-image
pip install -e .
0
from skimage import data, io, filters

image = data.coins()
# ... or any other NumPy array!
edges = filters.sobel(image)
io.imshow(edges)
io.show()
0

New to Communities?

Join the community