詳解車道線檢測算法之傳統(tǒng)圖像處理
# Threshold x gradientsxbinary = np.zeros_like(scaled_sobel)sxbinary[(scaled_sobel >= sx_thresh[0]) & (scaled_sobel <= sx_thresh[1])] = 1
# Threshold S channel of HLSs_binary = np.zeros_like(s_channel)s_binary[(s_channel >= s_thresh[0]) & (s_channel <= s_thresh[1])] = 1
# Threshold L channel of HLSl_binary = np.zeros_like(l_channel)l_binary[(l_channel >= l_thresh[0]) & (l_channel <= l_thresh[1])] = 1
# 將各種處理方式進(jìn)行融合,得到車道線的二進(jìn)制圖。color_binary = 255*np.dstack(( l_binary, sxbinary, s_binary)).a(chǎn)stype('uint8')
combined_binary = np.zeros_like(sxbinary)combined_binary[((l_binary == 1) & (s_binary == 1) | (sxbinary==1))] = 1
combined_binary = 255*np.dstack((combined_binary,combined_binary,combined_binary)).a(chǎn)stype('uint8')
透視變換和ROI提取
# 使用透視變換(perspective transform)得到二進(jìn)制圖(binary image)的鳥瞰圖(birds-eye view).img=plt.imread('test_image.jpg')corners = np.float32([[190,720],[580,460],[705,460],[1120,720]])# tuningimshape = img.shape
new_top_left=np.a(chǎn)rray([corners[0,0],0])new_top_right=np.a(chǎn)rray([corners[3,0],0])
offset=[150,0]src = np.float32([corners[0],corners[1],corners[2],corners[3]])dst = np.float32([corners[0]+offset,new_top_left+offset,new_top_right-offset ,corners[3]-offset])
M = cv2.getPerspectiveTransform(src, dst)warped = cv2.warpPerspective(img, M, img_size , flags=cv2.INTER_LINEAR)
# ROI提取shape = warped.shapevertices = np.a(chǎn)rray([[(0,0),(shape[1],0),(shape[1],0),(6*shape[1]/7,shape[0]), (shape[1]/7,shape[0]), (0,0)]],dtype=np.int32)mask = np.zeros_like(warped) if len(shape) > 2: channel_count = shape[2] ignore_mask_color = (255,) * channel_countelse: ignore_mask_color = 255cv2.fillPoly(mask, vertices, ignore_mask_color) masked_image = cv2.bitwise_and(img, mask)
利用直方圖濾波和滑動窗口進(jìn)行曲線擬合
# 對二進(jìn)制圖片的像素進(jìn)行直方圖統(tǒng)計(jì),統(tǒng)計(jì)左右兩側(cè)的峰值點(diǎn)作為左右車道線的起始點(diǎn)坐標(biāo)進(jìn)行曲線擬合。(利用前幀圖像探索后幀曲線)
def find_peaks(img,thresh): img_half=img[img.shape[0]//2:,:,0] data = np.sum(img_half, axis=0) filtered = scipy.ndimage.filters.gaussian_filter1d(data,20) xs = np.a(chǎn)range(len(filtered)) peak_ind = signal.find_peaks_cwt(filtered, np.a(chǎn)range(20,300)) peaks = np.array(peak_ind) peaks = peaks[filtered[peak_ind]>thresh] return peaks,filtered
def get_next_window(img,center_point,width): ny,nx,_ = img.shape mask = np.zeros_like(img) if (center_point <= width/2): center_point = width/2 if (center_point >= nx-width/2): center_point = nx-width/2 left = center_point - width/2 right = center_point + width/2 vertices = np.a(chǎn)rray([[(left,0),(left,ny), (right,ny),(right,0)]], dtype=np.int32) ignore_mask_color=(255,255,255) cv2.fillPoly(mask, vertices, ignore_mask_color) masked = cv2.bitwise_and(mask,img)
hist = np.sum(masked[:,:,0],axis=0) if max(hist>10000): center = np.a(chǎn)rgmax(hist) else: center = center_point return masked,center
def lane_from_window(binary,center_point,width): n_zones=6 ny,nx,nc = binary.shape zones = binary.reshape(n_zones,-1,nx,nc) zones = zones[::-1] window,center = get_next_window(zones[0],center_point,width) for zone in zones[1:]: next_window,center = get_next_window(zone,center,width) window = np.vstack((next_window,window)) return window
left_binary = lane_from_window(warped_binary,380,300)right_binary = lane_from_window(warped_binary,1000,300)
計(jì)算車道曲率
ym_per_pix = 30/720 # meters per pixel in y dimensionxm_per_pix = 3.7/700 # meters per pixel in x dimlane_width = 3.7
def cal_curvature(line): fit_coeffs_curv = np.polyfit(y*ym_per_pix, x*xm_per_pix, 2) radius_of_curvature = ((1 + (2*fit_coeffs_curv[0]*y_eval*ym_per_pix + fit_coeffs_curv[1])**2)**1.5) /np.a(chǎn)bsolute(2*fit_coeffs_curv[0]) return radius_of_curvature left_curvature= cal_curvature(left_line)right_curvature = cal_curvature(right_line)
curvature = 0.5*(round(right_curvature,1) + round(left_curvature,1))
將曲線逆透視到原圖片
# 將完成車道線標(biāo)記的鳥瞰圖反透視變換為初始圖像視角
newwarp = cv2.warpPerspective(color_warp, Minv, (img.shape[1], img.shape[0]))
將算法應(yīng)用于視頻
output = 'test_video_output.mp4'clip = VideoFileClip("test_video.mp4")out_clip = clip.fl_image(process_image) %time out_clip.write_videofile(output, audio=False)
- End -
發(fā)表評論
請輸入評論內(nèi)容...
請輸入評論/評論長度6~500個字
圖片新聞
技術(shù)文庫
最新活動更多
推薦專題
- 1 獨(dú)家 | 江鈴福特并入長安福特,從此只有“一個福特”
- 2 小鵬首款增程車曝光,大空間SUV要搶理想地盤?
- 3 想買SUV的再等等,下半年即將亮相4款全新SUV,個個都看點(diǎn)十足!
- 4 更傳統(tǒng)的新勢力SUV來了!小鵬G7上市定檔,價格會有驚喜?
- 5 螞蟻集團(tuán)+寧德時代:天使輪30億進(jìn)軍Robotaxi!
- 6 "尚界"登場:華為與上汽的這張新牌怎么打?
- 7 下半年高端電車又有五款新選擇,其中一款等到年底都不一定能提車
- 8 新勢力6月戰(zhàn)報:誰在領(lǐng)跑?
- 9 北京跑出未來獨(dú)角獸:做智能駕駛,份額全國第一
- 10 測試官丨與眾06,大廠的功力,讓你開過一次就忘不掉!