mirror of
https://github.com/we0091234/crnn_plate_recognition.git
synced 2025-10-21 09:29:26 +08:00
7 lines
196 B
Python
7 lines
196 B
Python
import cv2
|
|
|
|
imgfile = "/home/cxl/myData/pytorchProject/crnn_cn_pt-master/新AU3006_convert0177.jpg"
|
|
img = cv2.imread(imgfile)
|
|
img1 = cv2.resize(img,(160,32))
|
|
cv2.imshow("haha",img1)
|
|
cv2.waitKey(0) |