├── Dataset ├── README.md ├── gcloudapikey.json ├── ocr.py ├── results ├── croppedplate.jpg ├── enhancedplate.jpg ├── ocrfinal.png ├── ocrhindiresult.jpg ├── result1.jpg ├── result2.jpg ├── result3.jpg ├── result_dataset_gif.gif └── result_gif.gif ├── script ├── clr2bw.py ├── jpg2png.py ├── listfiles.py ├── move.py ├── png_to_jpg.py ├── rename.py ├── resize.py ├── sequence.py ├── vehicle.py └── vid2img.py ├── test_sih.ipynb └── training_sih.ipynb /Dataset: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/README.md -------------------------------------------------------------------------------- /gcloudapikey.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/ocr.py -------------------------------------------------------------------------------- /results/croppedplate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/croppedplate.jpg -------------------------------------------------------------------------------- /results/enhancedplate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/enhancedplate.jpg -------------------------------------------------------------------------------- /results/ocrfinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/ocrfinal.png -------------------------------------------------------------------------------- /results/ocrhindiresult.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/ocrhindiresult.jpg -------------------------------------------------------------------------------- /results/result1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/result1.jpg -------------------------------------------------------------------------------- /results/result2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/result2.jpg -------------------------------------------------------------------------------- /results/result3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/result3.jpg -------------------------------------------------------------------------------- /results/result_dataset_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/result_dataset_gif.gif -------------------------------------------------------------------------------- /results/result_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/results/result_gif.gif -------------------------------------------------------------------------------- /script/clr2bw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/clr2bw.py -------------------------------------------------------------------------------- /script/jpg2png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/jpg2png.py -------------------------------------------------------------------------------- /script/listfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/listfiles.py -------------------------------------------------------------------------------- /script/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/move.py -------------------------------------------------------------------------------- /script/png_to_jpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/png_to_jpg.py -------------------------------------------------------------------------------- /script/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/rename.py -------------------------------------------------------------------------------- /script/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/resize.py -------------------------------------------------------------------------------- /script/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/sequence.py -------------------------------------------------------------------------------- /script/vehicle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/vehicle.py -------------------------------------------------------------------------------- /script/vid2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/script/vid2img.py -------------------------------------------------------------------------------- /test_sih.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/test_sih.ipynb -------------------------------------------------------------------------------- /training_sih.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonLek/ALPR-and-Identification-for-Indian-Vehicles/HEAD/training_sih.ipynb --------------------------------------------------------------------------------