├── .gitignore ├── Configuration files for the tensorflow model ├── object-detection.pbtxt └── ssd_mobilenet_v1_pets.config ├── Launch.py ├── Pipfile ├── Pipfile.lock ├── PossibleChar.py ├── PossiblePlate.py ├── Preprocess.py ├── README.md ├── Start.py ├── Training ├── object_detection_tutorial.py └── train_detect.py ├── api.py ├── demo └── demo.gif ├── label_map_util.py ├── ops.py ├── plate_detector ├── checkpoint ├── frozen_inference_graph.pb ├── model.ckpt.data-00000-of-00001 ├── model.ckpt.index ├── model.ckpt.meta ├── pipeline.config └── saved_model │ └── saved_model.pb ├── videosplit.py └── videosplit_sklearn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/.gitignore -------------------------------------------------------------------------------- /Configuration files for the tensorflow model/object-detection.pbtxt: -------------------------------------------------------------------------------- 1 | item { 2 | id : 1 3 | name : 'lp' 4 | } 5 | -------------------------------------------------------------------------------- /Configuration files for the tensorflow model/ssd_mobilenet_v1_pets.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Configuration files for the tensorflow model/ssd_mobilenet_v1_pets.config -------------------------------------------------------------------------------- /Launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Launch.py -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /PossibleChar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/PossibleChar.py -------------------------------------------------------------------------------- /PossiblePlate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/PossiblePlate.py -------------------------------------------------------------------------------- /Preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Preprocess.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/README.md -------------------------------------------------------------------------------- /Start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Start.py -------------------------------------------------------------------------------- /Training/object_detection_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Training/object_detection_tutorial.py -------------------------------------------------------------------------------- /Training/train_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/Training/train_detect.py -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/api.py -------------------------------------------------------------------------------- /demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/demo/demo.gif -------------------------------------------------------------------------------- /label_map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/label_map_util.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/ops.py -------------------------------------------------------------------------------- /plate_detector/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/checkpoint -------------------------------------------------------------------------------- /plate_detector/frozen_inference_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/frozen_inference_graph.pb -------------------------------------------------------------------------------- /plate_detector/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /plate_detector/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/model.ckpt.index -------------------------------------------------------------------------------- /plate_detector/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/model.ckpt.meta -------------------------------------------------------------------------------- /plate_detector/pipeline.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/pipeline.config -------------------------------------------------------------------------------- /plate_detector/saved_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/plate_detector/saved_model/saved_model.pb -------------------------------------------------------------------------------- /videosplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/videosplit.py -------------------------------------------------------------------------------- /videosplit_sklearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deevoluation/ALPR/HEAD/videosplit_sklearn.py --------------------------------------------------------------------------------