├── Enet Model ├── Enet.py ├── asneck.py ├── bottleneck.py ├── initialblock.py └── upbneck.py ├── README.md ├── data_processing.py ├── detected_plates.txt ├── is_correct.py ├── project.py ├── reg.py ├── test.py ├── tested images ├── 3.jpg ├── 4.jpg ├── 6.jpg └── 8.jpg ├── train.py └── webcam.py /Enet Model/Enet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/Enet Model/Enet.py -------------------------------------------------------------------------------- /Enet Model/asneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/Enet Model/asneck.py -------------------------------------------------------------------------------- /Enet Model/bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/Enet Model/bottleneck.py -------------------------------------------------------------------------------- /Enet Model/initialblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/Enet Model/initialblock.py -------------------------------------------------------------------------------- /Enet Model/upbneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/Enet Model/upbneck.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/README.md -------------------------------------------------------------------------------- /data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/data_processing.py -------------------------------------------------------------------------------- /detected_plates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/detected_plates.txt -------------------------------------------------------------------------------- /is_correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/is_correct.py -------------------------------------------------------------------------------- /project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/project.py -------------------------------------------------------------------------------- /reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/reg.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/test.py -------------------------------------------------------------------------------- /tested images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/tested images/3.jpg -------------------------------------------------------------------------------- /tested images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/tested images/4.jpg -------------------------------------------------------------------------------- /tested images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/tested images/6.jpg -------------------------------------------------------------------------------- /tested images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/tested images/8.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/train.py -------------------------------------------------------------------------------- /webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiPatil/number-plate-detection-system/HEAD/webcam.py --------------------------------------------------------------------------------