安裝pytesseract

识别简体车牌
import cv2
import pytesseract
licenseImg = cv2.imread('license2.png')
text = pytesseract.image_to_string(
licenseImg, config='-l chi_sim --oem 1 --psm 6'
)
print(text)
```