├── DetectChars.py ├── DetectPlates.py ├── DocsAndPresentation ├── Steps With Images.docx ├── Steps With Images.pdf ├── steps.png └── steps.txt ├── LicPlateImages ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── Main.py ├── PossibleChar.py ├── PossiblePlate.py ├── Preprocess.py ├── classifications.txt ├── flattened_images.txt └── readme.txt /DetectChars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DetectChars.py -------------------------------------------------------------------------------- /DetectPlates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DetectPlates.py -------------------------------------------------------------------------------- /DocsAndPresentation/Steps With Images.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DocsAndPresentation/Steps With Images.docx -------------------------------------------------------------------------------- /DocsAndPresentation/Steps With Images.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DocsAndPresentation/Steps With Images.pdf -------------------------------------------------------------------------------- /DocsAndPresentation/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DocsAndPresentation/steps.png -------------------------------------------------------------------------------- /DocsAndPresentation/steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/DocsAndPresentation/steps.txt -------------------------------------------------------------------------------- /LicPlateImages/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/1.png -------------------------------------------------------------------------------- /LicPlateImages/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/10.png -------------------------------------------------------------------------------- /LicPlateImages/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/11.png -------------------------------------------------------------------------------- /LicPlateImages/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/12.png -------------------------------------------------------------------------------- /LicPlateImages/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/13.png -------------------------------------------------------------------------------- /LicPlateImages/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/14.png -------------------------------------------------------------------------------- /LicPlateImages/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/15.png -------------------------------------------------------------------------------- /LicPlateImages/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/16.png -------------------------------------------------------------------------------- /LicPlateImages/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/2.png -------------------------------------------------------------------------------- /LicPlateImages/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/3.png -------------------------------------------------------------------------------- /LicPlateImages/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/4.png -------------------------------------------------------------------------------- /LicPlateImages/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/5.png -------------------------------------------------------------------------------- /LicPlateImages/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/6.png -------------------------------------------------------------------------------- /LicPlateImages/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/7.png -------------------------------------------------------------------------------- /LicPlateImages/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/8.png -------------------------------------------------------------------------------- /LicPlateImages/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/LicPlateImages/9.png -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/Main.py -------------------------------------------------------------------------------- /PossibleChar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/PossibleChar.py -------------------------------------------------------------------------------- /PossiblePlate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/PossiblePlate.py -------------------------------------------------------------------------------- /Preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/Preprocess.py -------------------------------------------------------------------------------- /classifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/classifications.txt -------------------------------------------------------------------------------- /flattened_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrocontrollersAndMore/OpenCV_3_License_Plate_Recognition_Python/HEAD/flattened_images.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | The video pretty much explains it all: 2 | https://www.youtube.com/watch?v=fJcl6Gw1D8k 3 | --------------------------------------------------------------------------------