Skip to content

Latest commit

 

History

History
95 lines (65 loc) · 3.08 KB

index.rst

File metadata and controls

95 lines (65 loc) · 3.08 KB

Image processing in Python

scikit-image is a collection of algorithms for image processing. It is available free of charge and free of restriction. We pride ourselves on high-quality, peer-reviewed code, written by an active community of volunteers.

Download
If you find this project useful, please cite: [BiBTeX]

Stéfan van der Walt, Johannes L. Schönberger, Juan Nunez-Iglesias, François Boulogne, Joshua D. Warner, Neil Yager, Emmanuelle Gouillart, Tony Yu and the scikit-image contributors. scikit-image: Image processing in Python. PeerJ 2:e453 (2014) https://doi.org/10.7717/peerj.453

News

Getting Started

Filtering an image with scikit-image is easy! For more examples, please visit our gallery.

import skimage as ski

image = ski.data.coins()
# ... or any other NumPy array!
edges = ski.filters.sobel(image)
ski.io.imshow(edges)
ski.io.show()
_static/coins-small.png _static/sobel-coins-small.png

You can read more in our user guide. For an introduction to image processing using scikit-image, see this lesson by Data Carpentry.