Browse Source

Delete batch.py

pull/1/MERGE
Jack Yu GitHub 6 years ago
parent
commit
feffde15e7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 17 deletions
  1. +0
    -17
      batch.py

+ 0
- 17
batch.py View File

@@ -1,17 +0,0 @@
#coding=utf-8
import os
from hyperlpr import pipline as pp

import cv2

parent= "/Users/yujinke/车牌图片/收费站_完成标注"

for filename in os.listdir(parent):
path = os.path.join(parent,filename)
print path
if path.endswith(".jpg") or path.endswith(".png"):
image = cv2.imread(path)

image,res = pp.SimpleRecognizePlate(image)
cv2.imshow("image",image)
cv2.waitKey(0)

Loading…
Cancel
Save