├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── class_CNN.py ├── class_PlateDetection.py ├── code-of-conduct.txt ├── model ├── binary_128_0.50_labels_ver2.txt └── binary_128_0.50_ver3.pb ├── requirements.txt ├── test.py ├── test_image.py ├── test_videos ├── screenshot_1.png ├── screenshot_2.png ├── test.MOV └── test.jpg └── utils ├── average_plate.py ├── find_best_quality_images.py └── segmentation.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__/ 3 | .DS_Store 4 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/README.md -------------------------------------------------------------------------------- /class_CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/class_CNN.py -------------------------------------------------------------------------------- /class_PlateDetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/class_PlateDetection.py -------------------------------------------------------------------------------- /code-of-conduct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/code-of-conduct.txt -------------------------------------------------------------------------------- /model/binary_128_0.50_labels_ver2.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | A 12 | C 13 | E 14 | F 15 | -------------------------------------------------------------------------------- /model/binary_128_0.50_ver3.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/model/binary_128_0.50_ver3.pb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test.py -------------------------------------------------------------------------------- /test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test_image.py -------------------------------------------------------------------------------- /test_videos/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test_videos/screenshot_1.png -------------------------------------------------------------------------------- /test_videos/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test_videos/screenshot_2.png -------------------------------------------------------------------------------- /test_videos/test.MOV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test_videos/test.MOV -------------------------------------------------------------------------------- /test_videos/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/test_videos/test.jpg -------------------------------------------------------------------------------- /utils/average_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/utils/average_plate.py -------------------------------------------------------------------------------- /utils/find_best_quality_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/utils/find_best_quality_images.py -------------------------------------------------------------------------------- /utils/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longphungtuan94/ALPR_System/HEAD/utils/segmentation.py --------------------------------------------------------------------------------