Lane detection with Open CV
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()
Source
https://medium.com/@mrhwick/simple-lane-detection-with-opencv-bfeb6ae54ec0
Leave a comment