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 332 B

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