├── README.md ├── __pycache__ └── models.cpython-35.pyc ├── cfg ├── coco.data ├── yolov3-spp.cfg ├── yolov3-tiny.cfg └── yolov3.cfg ├── data ├── coco.names └── get_coco_dataset.sh ├── detect.py ├── models.py ├── output ├── image_15.png ├── image_279.png ├── image_280.png ├── image_281.png ├── image_803.png ├── image_807.png ├── image_816.png ├── image_821.png ├── image_822.png ├── image_823.png ├── image_835.png ├── image_836.png ├── image_843.png ├── image_844.png ├── image_855.png ├── image_897.png ├── image_898.png └── image_899.png ├── requirements.txt ├── test.py ├── train.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-35.pyc ├── __init__.cpython-36.pyc ├── datasets.cpython-35.pyc ├── datasets.cpython-36.pyc ├── parse_config.cpython-35.pyc ├── parse_config.cpython-36.pyc ├── torch_utils.cpython-35.pyc ├── torch_utils.cpython-36.pyc ├── utils.cpython-35.pyc └── utils.cpython-36.pyc ├── datasets.py ├── gcp.sh ├── parse_config.py ├── torch_utils.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /cfg/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/cfg/coco.data -------------------------------------------------------------------------------- /cfg/yolov3-spp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/cfg/yolov3-spp.cfg -------------------------------------------------------------------------------- /cfg/yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/cfg/yolov3-tiny.cfg -------------------------------------------------------------------------------- /cfg/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/cfg/yolov3.cfg -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- 1 | license_plate 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /data/get_coco_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/data/get_coco_dataset.sh -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/detect.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/models.py -------------------------------------------------------------------------------- /output/image_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_15.png -------------------------------------------------------------------------------- /output/image_279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_279.png -------------------------------------------------------------------------------- /output/image_280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_280.png -------------------------------------------------------------------------------- /output/image_281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_281.png -------------------------------------------------------------------------------- /output/image_803.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_803.png -------------------------------------------------------------------------------- /output/image_807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_807.png -------------------------------------------------------------------------------- /output/image_816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_816.png -------------------------------------------------------------------------------- /output/image_821.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_821.png -------------------------------------------------------------------------------- /output/image_822.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_822.png -------------------------------------------------------------------------------- /output/image_823.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_823.png -------------------------------------------------------------------------------- /output/image_835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_835.png -------------------------------------------------------------------------------- /output/image_836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_836.png -------------------------------------------------------------------------------- /output/image_843.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_843.png -------------------------------------------------------------------------------- /output/image_844.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_844.png -------------------------------------------------------------------------------- /output/image_855.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_855.png -------------------------------------------------------------------------------- /output/image_897.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_897.png -------------------------------------------------------------------------------- /output/image_898.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_898.png -------------------------------------------------------------------------------- /output/image_899.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/output/image_899.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/datasets.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/datasets.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parse_config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/parse_config.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parse_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/parse_config.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/torch_utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/torch_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/gcp.sh -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/torch_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThorPham/License-plate-detection/HEAD/utils/utils.py --------------------------------------------------------------------------------