less than 1 minute read

import matplotlib.pyplot as plt
import matplotlib.image as mpimg
# reading in an image
image = mpimg.imread('solidWhiteCurve.jpg')

# printing out some stats and plotting the image
print('This image is:', type(image), 'with dimensions:', image.shape)
plt.imshow(image)
plt.show()

Image

Source

https://medium.com/@mrhwick/simple-lane-detection-with-opencv-bfeb6ae54ec0

Updated:

Leave a comment