├── .gitignore ├── LICENSE ├── README.md ├── demo.py ├── font └── gensen-font │ ├── SIL_Open_Font_License_1.1.txt │ └── ttc │ └── GenSenRounded2-B.ttc ├── util.py └── weight ├── EkMixer-128x128.onnx ├── PlateYOLO-JP-1280x1280.onnx ├── PlateYOLO-JP-1920x1920.onnx ├── PlateYOLO-JP-320x320.onnx └── PlateYOLO-JP-640x640.onnx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/demo.py -------------------------------------------------------------------------------- /font/gensen-font/SIL_Open_Font_License_1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/font/gensen-font/SIL_Open_Font_License_1.1.txt -------------------------------------------------------------------------------- /font/gensen-font/ttc/GenSenRounded2-B.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/font/gensen-font/ttc/GenSenRounded2-B.ttc -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/util.py -------------------------------------------------------------------------------- /weight/EkMixer-128x128.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/weight/EkMixer-128x128.onnx -------------------------------------------------------------------------------- /weight/PlateYOLO-JP-1280x1280.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/weight/PlateYOLO-JP-1280x1280.onnx -------------------------------------------------------------------------------- /weight/PlateYOLO-JP-1920x1920.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/weight/PlateYOLO-JP-1920x1920.onnx -------------------------------------------------------------------------------- /weight/PlateYOLO-JP-320x320.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/weight/PlateYOLO-JP-320x320.onnx -------------------------------------------------------------------------------- /weight/PlateYOLO-JP-640x640.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kazuhito00/PlateYOLO-JP-Prototype/HEAD/weight/PlateYOLO-JP-640x640.onnx --------------------------------------------------------------------------------