├── LPRNet ├── Evaluation.py ├── LPRNet_Test.py ├── LPRNet_Train.py ├── __pycache__ │ └── LPRNet_Test.cpython-36.pyc ├── data │ ├── NotoSansCJK-Regular.ttc │ ├── load_data.py │ └── preprocess.py ├── model │ ├── LPRNET.py │ ├── STN.py │ └── __pycache__ │ │ ├── LPRNET.cpython-36.pyc │ │ └── STN.cpython-36.pyc └── weights │ ├── Final_LPRNet_model.pth │ ├── Final_STN_model.pth │ ├── LPRNet_model_Init.pth │ └── STN_model_Init.pth ├── License_Plate_Detection_Tutorial.ipynb ├── MTCNN ├── MTCNN.py ├── __pycache__ │ └── MTCNN.cpython-36.pyc ├── data_preprocessing │ ├── __pycache__ │ │ └── assemble.cpython-36.pyc │ ├── assemble.py │ ├── assemble_Onet_imglist.py │ ├── assemble_Pnet_imglist.py │ ├── gen_Pnet_train_data.py │ └── get_Onet_train_data.py ├── data_set │ └── preprocess.py ├── model │ ├── MTCNN_nets.py │ └── __pycache__ │ │ └── MTCNN_nets.cpython-36.pyc ├── train │ ├── Data_Loading.py │ ├── Train_Onet.py │ └── Train_Pnet.py ├── utils │ ├── __pycache__ │ │ └── util.cpython-36.pyc │ └── util.py └── weights │ ├── onet_Weights │ └── pnet_Weights ├── README.md ├── ccpd └── readme ├── main.py └── test ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── MTCNN.png └── pipeline.png /LPRNet/Evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/Evaluation.py -------------------------------------------------------------------------------- /LPRNet/LPRNet_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/LPRNet_Test.py -------------------------------------------------------------------------------- /LPRNet/LPRNet_Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/LPRNet_Train.py -------------------------------------------------------------------------------- /LPRNet/__pycache__/LPRNet_Test.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/__pycache__/LPRNet_Test.cpython-36.pyc -------------------------------------------------------------------------------- /LPRNet/data/NotoSansCJK-Regular.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/data/NotoSansCJK-Regular.ttc -------------------------------------------------------------------------------- /LPRNet/data/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/data/load_data.py -------------------------------------------------------------------------------- /LPRNet/data/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/data/preprocess.py -------------------------------------------------------------------------------- /LPRNet/model/LPRNET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/model/LPRNET.py -------------------------------------------------------------------------------- /LPRNet/model/STN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/model/STN.py -------------------------------------------------------------------------------- /LPRNet/model/__pycache__/LPRNET.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/model/__pycache__/LPRNET.cpython-36.pyc -------------------------------------------------------------------------------- /LPRNet/model/__pycache__/STN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/model/__pycache__/STN.cpython-36.pyc -------------------------------------------------------------------------------- /LPRNet/weights/Final_LPRNet_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/weights/Final_LPRNet_model.pth -------------------------------------------------------------------------------- /LPRNet/weights/Final_STN_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/weights/Final_STN_model.pth -------------------------------------------------------------------------------- /LPRNet/weights/LPRNet_model_Init.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/weights/LPRNet_model_Init.pth -------------------------------------------------------------------------------- /LPRNet/weights/STN_model_Init.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/LPRNet/weights/STN_model_Init.pth -------------------------------------------------------------------------------- /License_Plate_Detection_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/License_Plate_Detection_Tutorial.ipynb -------------------------------------------------------------------------------- /MTCNN/MTCNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/MTCNN.py -------------------------------------------------------------------------------- /MTCNN/__pycache__/MTCNN.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/__pycache__/MTCNN.cpython-36.pyc -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/__pycache__/assemble.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/__pycache__/assemble.cpython-36.pyc -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/assemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/assemble.py -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/assemble_Onet_imglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/assemble_Onet_imglist.py -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/assemble_Pnet_imglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/assemble_Pnet_imglist.py -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/gen_Pnet_train_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/gen_Pnet_train_data.py -------------------------------------------------------------------------------- /MTCNN/data_preprocessing/get_Onet_train_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_preprocessing/get_Onet_train_data.py -------------------------------------------------------------------------------- /MTCNN/data_set/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/data_set/preprocess.py -------------------------------------------------------------------------------- /MTCNN/model/MTCNN_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/model/MTCNN_nets.py -------------------------------------------------------------------------------- /MTCNN/model/__pycache__/MTCNN_nets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/model/__pycache__/MTCNN_nets.cpython-36.pyc -------------------------------------------------------------------------------- /MTCNN/train/Data_Loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/train/Data_Loading.py -------------------------------------------------------------------------------- /MTCNN/train/Train_Onet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/train/Train_Onet.py -------------------------------------------------------------------------------- /MTCNN/train/Train_Pnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/train/Train_Pnet.py -------------------------------------------------------------------------------- /MTCNN/utils/__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/utils/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /MTCNN/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/utils/util.py -------------------------------------------------------------------------------- /MTCNN/weights/onet_Weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/weights/onet_Weights -------------------------------------------------------------------------------- /MTCNN/weights/pnet_Weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/MTCNN/weights/pnet_Weights -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /ccpd/readme: -------------------------------------------------------------------------------- 1 | put test data here 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/main.py -------------------------------------------------------------------------------- /test/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/1.jpg -------------------------------------------------------------------------------- /test/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/2.jpg -------------------------------------------------------------------------------- /test/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/3.jpg -------------------------------------------------------------------------------- /test/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/4.jpg -------------------------------------------------------------------------------- /test/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/5.jpg -------------------------------------------------------------------------------- /test/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/6.jpg -------------------------------------------------------------------------------- /test/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/7.jpg -------------------------------------------------------------------------------- /test/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/8.jpg -------------------------------------------------------------------------------- /test/MTCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/MTCNN.png -------------------------------------------------------------------------------- /test/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuexingyu24/License_Plate_Detection_Pytorch/HEAD/test/pipeline.png --------------------------------------------------------------------------------