├── .gitignore ├── README.md ├── car_number_detector_ssd.py ├── detector_model └── frozen_inference_graph.pb └── object_detection.pbtxt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrVP/Car-number-plate-detection-and-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrVP/Car-number-plate-detection-and-recognition/HEAD/README.md -------------------------------------------------------------------------------- /car_number_detector_ssd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrVP/Car-number-plate-detection-and-recognition/HEAD/car_number_detector_ssd.py -------------------------------------------------------------------------------- /detector_model/frozen_inference_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexandrVP/Car-number-plate-detection-and-recognition/HEAD/detector_model/frozen_inference_graph.pb -------------------------------------------------------------------------------- /object_detection.pbtxt: -------------------------------------------------------------------------------- 1 | item { 2 | id: 1 3 | name: 'car_number' 4 | } --------------------------------------------------------------------------------