Chapter 20 Working With Images {working-with-images}
Images are a valueable potential source of information, and image processing, including image recognition, is also an important application of machine learning.
We assume you have loaded the following packages:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
20.1 Loading images
= plt.imread("../img/flag-of-scotland-8x8.png") flag
## FileNotFoundError: [Errno 2] No such file or directory: '../img/flag-of-scotland-8x8.png'
flag.shape
## NameError: name 'flag' is not defined
=2)
np.set_printoptions(precision0] # R flag[:,:,
## NameError: name 'flag' is not defined
1] # G flag[:,:,
## NameError: name 'flag' is not defined
2] # B flag[:,:,
## NameError: name 'flag' is not defined
= plt.imshow(flag) _
## NameError: name 'flag' is not defined