溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

怎么在python中利用OpenCV識(shí)別車(chē)牌號(hào)碼

發(fā)布時(shí)間:2021-06-02 17:47:50 來(lái)源:億速云 閱讀:278 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

本篇文章給大家分享的是有關(guān)怎么在python中利用OpenCV識(shí)別車(chē)牌號(hào)碼,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話(huà)不多說(shuō),跟著小編一起來(lái)看看吧。

1、車(chē)牌定位的主要工作是從獲取的車(chē)輛圖像中找到汽車(chē)牌照所在位置,并把車(chē)牌從該區(qū)域中準(zhǔn)確地分割出來(lái)

這里所采用的是利用車(chē)牌的顏色(黃色、藍(lán)色、綠色) 來(lái)進(jìn)行定位

#定位車(chē)牌
def color_position(img,output_path):
 colors = [([26,43,46], [34,255,255]), # 黃色
    ([100,43,46], [124,255,255]), # 藍(lán)色
    ([35, 43, 46], [77, 255, 255]) # 綠色
    ]
 hsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
 for (lower, upper) in colors:
  lower = np.array(lower, dtype="uint8") # 顏色下限
  upper = np.array(upper, dtype="uint8") # 顏色上限

  # 根據(jù)閾值找到對(duì)應(yīng)的顏色
  mask = cv2.inRange(hsv, lowerb=lower, upperb=upper)
  output = cv2.bitwise_and(img, img, mask=mask)
  k = mark_zone_color(output,output_path)
  if k==1:
   return 1
  # 展示圖片
  #cv2.imshow("image", img)
  #cv2.imshow("image-color", output)
  #cv2.waitKey(0)
 return 0

怎么在python中利用OpenCV識(shí)別車(chē)牌號(hào)碼

2、將車(chē)牌提取出來(lái)

def mark_zone_color(src_img,output_img):
 #根據(jù)顏色在原始圖像上標(biāo)記
 #轉(zhuǎn)灰度
 gray = cv2.cvtColor(src_img,cv2.COLOR_BGR2GRAY)

 #圖像二值化
 ret,binary = cv2.threshold(gray,0,255,cv2.THRESH_BINARY)
 #輪廓檢測(cè)
 x,contours,hierarchy = cv2.findContours(binary,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
 #drawing = img
 #cv2.drawContours(drawing, contours, -1, (0, 0, 255), 3) # 填充輪廓顏色
 #cv2.imshow('drawing', drawing)
 #cv2.waitKey(0)
 #print(contours)
 
 temp_contours = [] # 存儲(chǔ)合理的輪廓
 car_plates=[]
 if len(contours)>0:
  for contour in contours:
   if cv2.contourArea(contour) > Min_Area:
    temp_contours.append(contour)
   car_plates = []
   for temp_contour in temp_contours:
    rect_tupple = cv2.minAreaRect(temp_contour)
    rect_width, rect_height = rect_tupple[1]
    if rect_width < rect_height:
     rect_width, rect_height = rect_height, rect_width
    aspect_ratio = rect_width / rect_height
    # 車(chē)牌正常情況下寬高比在2 - 5.5之間
    if aspect_ratio > 2 and aspect_ratio < 5.5:
     car_plates.append(temp_contour)
     rect_vertices = cv2.boxPoints(rect_tupple)
     rect_vertices = np.int0(rect_vertices)
   if len(car_plates)==1:
    oldimg = cv2.drawContours(img, [rect_vertices], -1, (0, 0, 255), 2)
    #cv2.imshow("che pai ding wei", oldimg)
    # print(rect_tupple)
    break

 #把車(chē)牌號(hào)截取出來(lái)
 if len(car_plates)==1:
  for car_plate in car_plates:
   row_min,col_min = np.min(car_plate[:,0,:],axis=0)
   row_max,col_max = np.max(car_plate[:,0,:],axis=0)
   cv2.rectangle(img,(row_min,col_min),(row_max,col_max),(0,255,0),2)
   card_img = img[col_min:col_max,row_min:row_max,:]
   cv2.imshow("img",img)
  cv2.imwrite(output_img + '/' + 'card_img' + '.jpg',card_img)
  cv2.imshow("card_img.",card_img)
  cv2.waitKey(0)
  cv2.destroyAllWindows()
  return 1
 return 0

怎么在python中利用OpenCV識(shí)別車(chē)牌號(hào)碼

以上就是怎么在python中利用OpenCV識(shí)別車(chē)牌號(hào)碼,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI