Advertisement

(Python)识别车道标记线

阅读量:

通过对一系列图像进行分析,以确定并标定车道线的具体位置

这里写图片描述

相较于沥青路面而言,车道线具备一个显著的特点,即其颜色呈现为白色。

复制代码
    #importing some useful packages
    import matplotlib.pyplot as plt
    import matplotlib.image as mpimg
    import numpy as np
    import cv2
    %matplotlib inline
    #reading in an image
    image = mpimg.imread('test_images/solidWhiteRight.jpg')
    
    #printing out some stats and plotting
    print('This image is:', type(image), 'with dimensions:', image.shape)
    plt.imshow(image)  # if you wanted to show a si

全部评论 (0)

还没有任何评论哟~