亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在python中利用OpenCV識別車牌號碼

發布時間:2021-06-02 17:47:50 來源:億速云 閱讀:279 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關怎么在python中利用OpenCV識別車牌號碼,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1、車牌定位的主要工作是從獲取的車輛圖像中找到汽車牌照所在位置,并把車牌從該區域中準確地分割出來

這里所采用的是利用車牌的顏色(黃色、藍色、綠色) 來進行定位

#定位車牌
def color_position(img,output_path):
 colors = [([26,43,46], [34,255,255]), # 黃色
    ([100,43,46], [124,255,255]), # 藍色
    ([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") # 顏色上限

  # 根據閾值找到對應的顏色
  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識別車牌號碼

2、將車牌提取出來

def mark_zone_color(src_img,output_img):
 #根據顏色在原始圖像上標記
 #轉灰度
 gray = cv2.cvtColor(src_img,cv2.COLOR_BGR2GRAY)

 #圖像二值化
 ret,binary = cv2.threshold(gray,0,255,cv2.THRESH_BINARY)
 #輪廓檢測
 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 = [] # 存儲合理的輪廓
 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
    # 車牌正常情況下寬高比在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

 #把車牌號截取出來
 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識別車牌號碼

以上就是怎么在python中利用OpenCV識別車牌號碼,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湘乡市| 萨嘎县| 漠河县| 小金县| 海南省| 大冶市| 历史| 萍乡市| 安国市| 平南县| 巨鹿县| 湘阴县| 女性| 扎鲁特旗| 南木林县| 当涂县| 竹溪县| 原阳县| 昌宁县| 乳源| 太和县| 什邡市| 栾川县| 都江堰市| 金山区| 象山县| 昌黎县| 屯留县| 临漳县| 武山县| 财经| 防城港市| 梁河县| 扬中市| 巴彦淖尔市| 综艺| 平原县| 南郑县| 丰城市| 大埔县| 屯留县|