python-scipyHow can I use Python and SciPy to read an image file?
Using Python and SciPy to read an image file is relatively straightforward. The following example code reads in an image file and prints out its dimensions:
from scipy import misc
img = misc.imread('image.jpg')
print(img.shape)
Output example
(300, 400, 3)
The code is composed of the following parts:
from scipy import miscimports the SciPy modulemiscwhich contains functions to work with images.img = misc.imread('image.jpg')reads in the image fileimage.jpgand stores it as an array in the variableimg.print(img.shape)prints out the shape of the arrayimg, which is the dimensions of the image.
Helpful links
More of Python Scipy
- How can I install and use SciPy on Ubuntu?
- How do I create a 2D array of zeros using Python and NumPy?
- How do I upgrade my Python Scipy package?
- How can I use Python and SciPy to find the zeros of a function?
- How do I use Scipy zeros in Python?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How can I use Python Numpy to select elements from an array based on multiple conditions?
- How can I check if a certain version of Python is compatible with SciPy?
- How can I use Python and SciPy to solve an ordinary differential equation?
- How do I use the scipy ttest_ind function in Python?
See more codes...