├── .gitignore ├── README.md ├── data_aug.py ├── evaluate.py ├── images ├── backbone.png ├── basic_block.png └── samples │ ├── KA01ML5359_1.JPG │ ├── KA01ML6902_2.JPG │ ├── KA01MP2936_3.JPG │ ├── KA01MP2936_4.jpg │ ├── KA01MR2693_5.JPG │ ├── KA53MD7540_6.JPG │ └── KA53Z0023_7.JPG ├── loader.py ├── model.py ├── predict.py ├── requirements.txt ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/README.md -------------------------------------------------------------------------------- /data_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/data_aug.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/evaluate.py -------------------------------------------------------------------------------- /images/backbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/backbone.png -------------------------------------------------------------------------------- /images/basic_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/basic_block.png -------------------------------------------------------------------------------- /images/samples/KA01ML5359_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA01ML5359_1.JPG -------------------------------------------------------------------------------- /images/samples/KA01ML6902_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA01ML6902_2.JPG -------------------------------------------------------------------------------- /images/samples/KA01MP2936_3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA01MP2936_3.JPG -------------------------------------------------------------------------------- /images/samples/KA01MP2936_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA01MP2936_4.jpg -------------------------------------------------------------------------------- /images/samples/KA01MR2693_5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA01MR2693_5.JPG -------------------------------------------------------------------------------- /images/samples/KA53MD7540_6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA53MD7540_6.JPG -------------------------------------------------------------------------------- /images/samples/KA53Z0023_7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/images/samples/KA53Z0023_7.JPG -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/loader.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/model.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesakarghm/LPRNET/HEAD/utils.py --------------------------------------------------------------------------------