├── LICENSE ├── README.md ├── cfg ├── classes.data ├── classes.names └── yolov4.cfg ├── main.py ├── screens ├── env.jpg ├── sc1.png └── sc2.png ├── tools ├── config.py ├── darknet2pytorch.py ├── region_loss.py ├── torch_utils.py ├── utils.py └── yolo_layer.py └── weights └── yolov4.weights /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/README.md -------------------------------------------------------------------------------- /cfg/classes.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/cfg/classes.data -------------------------------------------------------------------------------- /cfg/classes.names: -------------------------------------------------------------------------------- 1 | HELMET 2 | PLATE 3 | -------------------------------------------------------------------------------- /cfg/yolov4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/cfg/yolov4.cfg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/main.py -------------------------------------------------------------------------------- /screens/env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/screens/env.jpg -------------------------------------------------------------------------------- /screens/sc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/screens/sc1.png -------------------------------------------------------------------------------- /screens/sc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/screens/sc2.png -------------------------------------------------------------------------------- /tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/config.py -------------------------------------------------------------------------------- /tools/darknet2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/darknet2pytorch.py -------------------------------------------------------------------------------- /tools/region_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/region_loss.py -------------------------------------------------------------------------------- /tools/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/torch_utils.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/utils.py -------------------------------------------------------------------------------- /tools/yolo_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/tools/yolo_layer.py -------------------------------------------------------------------------------- /weights/yolov4.weights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/souravrs999/License-Plate-Recognition/HEAD/weights/yolov4.weights --------------------------------------------------------------------------------