├── README.md ├── convt.py ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── config.cpython-37.pyc │ ├── data_augment.cpython-37.pyc │ └── wider_lp.cpython-37.pyc ├── config.py ├── data_augment.py └── wider_lp.py ├── detect.py ├── layers ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── functions │ ├── __pycache__ │ │ └── prior_box.cpython-37.pyc │ └── prior_box.py └── modules │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── multibox_loss.cpython-37.pyc │ └── multibox_loss.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── net.cpython-37.pyc │ └── retina.cpython-37.pyc ├── mobile_net_v3.py ├── mobilenetv3.py ├── net.py └── retina.py ├── prepare_data ├── __init__.py ├── base_data_adapter.py ├── base_provider.py ├── dataset_provider.py ├── reformat_CCPD.py ├── text_list_adapter.py └── train_data_tool.py ├── test.jpg ├── test1.png ├── test_images ├── 0.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 1578547321429.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── train.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── box_utils.cpython-37.pyc ├── box_utils.py ├── nms │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── py_cpu_nms.cpython-37.pyc │ └── py_cpu_nms.py └── timer.py └── weights ├── mobilenet0.25_Final.pth ├── mobilenet0.25_epoch_20_ccpd.pth ├── mobilenet0.25_epoch_8_white_ccpd.pth └── mobilenetV1X0.25_pretrain.tar /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/README.md -------------------------------------------------------------------------------- /convt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/convt.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/data_augment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/__pycache__/data_augment.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/wider_lp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/__pycache__/wider_lp.cpython-37.pyc -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/config.py -------------------------------------------------------------------------------- /data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/data_augment.py -------------------------------------------------------------------------------- /data/wider_lp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/data/wider_lp.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/detect.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/__pycache__/prior_box.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/functions/__pycache__/prior_box.cpython-37.pyc -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/modules/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /layers/modules/__pycache__/multibox_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/modules/__pycache__/multibox_loss.cpython-37.pyc -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/net.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/__pycache__/net.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/retina.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/__pycache__/retina.cpython-37.pyc -------------------------------------------------------------------------------- /models/mobile_net_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/mobile_net_v3.py -------------------------------------------------------------------------------- /models/mobilenetv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/mobilenetv3.py -------------------------------------------------------------------------------- /models/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/net.py -------------------------------------------------------------------------------- /models/retina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/models/retina.py -------------------------------------------------------------------------------- /prepare_data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prepare_data/base_data_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/base_data_adapter.py -------------------------------------------------------------------------------- /prepare_data/base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/base_provider.py -------------------------------------------------------------------------------- /prepare_data/dataset_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/dataset_provider.py -------------------------------------------------------------------------------- /prepare_data/reformat_CCPD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/reformat_CCPD.py -------------------------------------------------------------------------------- /prepare_data/text_list_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/text_list_adapter.py -------------------------------------------------------------------------------- /prepare_data/train_data_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/prepare_data/train_data_tool.py -------------------------------------------------------------------------------- /test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test.jpg -------------------------------------------------------------------------------- /test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test1.png -------------------------------------------------------------------------------- /test_images/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/0.jpg -------------------------------------------------------------------------------- /test_images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/11.jpg -------------------------------------------------------------------------------- /test_images/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/12.jpg -------------------------------------------------------------------------------- /test_images/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/13.jpg -------------------------------------------------------------------------------- /test_images/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/14.jpg -------------------------------------------------------------------------------- /test_images/1578547321429.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/1578547321429.jpg -------------------------------------------------------------------------------- /test_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/2.jpg -------------------------------------------------------------------------------- /test_images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/3.jpg -------------------------------------------------------------------------------- /test_images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/4.jpg -------------------------------------------------------------------------------- /test_images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/7.jpg -------------------------------------------------------------------------------- /test_images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/8.jpg -------------------------------------------------------------------------------- /test_images/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/test_images/9.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/box_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/__pycache__/box_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/box_utils.py -------------------------------------------------------------------------------- /utils/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/nms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/nms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/nms/__pycache__/py_cpu_nms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/nms/__pycache__/py_cpu_nms.cpython-37.pyc -------------------------------------------------------------------------------- /utils/nms/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/nms/py_cpu_nms.py -------------------------------------------------------------------------------- /utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/utils/timer.py -------------------------------------------------------------------------------- /weights/mobilenet0.25_Final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/weights/mobilenet0.25_Final.pth -------------------------------------------------------------------------------- /weights/mobilenet0.25_epoch_20_ccpd.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/weights/mobilenet0.25_epoch_20_ccpd.pth -------------------------------------------------------------------------------- /weights/mobilenet0.25_epoch_8_white_ccpd.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/weights/mobilenet0.25_epoch_8_white_ccpd.pth -------------------------------------------------------------------------------- /weights/mobilenetV1X0.25_pretrain.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gm19900510/Pytorch_Retina_License_Plate/HEAD/weights/mobilenetV1X0.25_pretrain.tar --------------------------------------------------------------------------------