You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 298 B

5 years ago
5 years ago
12345678
  1. import os
  2. from .hyperlpr import LPR
  3. PR = LPR(os.path.join(os.path.split(os.path.realpath(__file__))[0], "models"))
  4. def HyperLPR_plate_recognition(Input_BGR, minSize=30, charSelectionDeskew=True, region="CH", DB=True):
  5. return PR.plate_recognition(Input_BGR, minSize, charSelectionDeskew, DB)