Skip to content
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Jun 26, 2019
Jun 23, 2019
Jun 23, 2019
Jun 3, 2019
Jun 19, 2019

README.md

Please feel free to connect with me here on LinkedIn if you are interested in data science and machine learning.


Image processing examples with Numpy, Scipy, and Scikit-image

Requirements

  • Python 3.4+
  • NumPy ($ pip install numpy)
  • SciPy ($ pip install scipy)
  • MatplotLib ($ pip install matplotlib)
  • Scikit-image ($ pip install scikit-image)

Testing after install

Open a Jupyter notebook and execute the following code,

import numpy as np
import matplotlib.pyplot as plt
from skimage import data, io, filters

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

You should see the following output. If you see this, you are all set to go!

sobel_coins


Simple NumPy array based operations


Exposure and color channel manipulations


Edges, lines, and contours


Geometrical transformations and registration

Filtering and restoration

Hysteresis thresholding

Image deconvolution

Unsharp mask

You can’t perform that action at this time.