├── README.md ├── cfg ├── alexnet.cfg ├── darknet.cfg ├── extraction.cfg ├── extraction.conv.cfg ├── jack.cfg ├── jnet-conv.cfg ├── msr_152.cfg ├── msr_34.cfg ├── msr_50.cfg ├── strided.cfg ├── vgg-16.cfg ├── vgg-conv.cfg ├── writing.cfg ├── yolo-coco.cfg ├── yolo-small.cfg ├── yolo-tiny-rd.cfg ├── yolo-tiny.cfg ├── yolo.cfg ├── yolo_2class └── yolo_2class_box11.cfg ├── convert_xml_to_txt.ipynb ├── create_txt_file.ipynb ├── src ├── cfgconst.py ├── cfgconst.pyc ├── darknet.py ├── darknet.pyc ├── ddd.py ├── ddd.pyc ├── kerasmodel.py ├── kerasmodel.pyc ├── opcv.py ├── parse.py ├── parse.pyc ├── testyololoss.py ├── utils.py ├── utils.pyc ├── yolo.py ├── yolodata.py └── yolodata.pyc ├── testlist.txt ├── trainlist.txt ├── ui_data ├── after_conversion.txt ├── before_conversion.txt ├── dog.jpg ├── eagle.jpg ├── horses.jpg ├── inet.labels.list ├── labels │ ├── D00.PNG │ ├── D01.PNG │ ├── D10.PNG │ ├── D11.PNG │ ├── D20.PNG │ ├── D40.PNG │ ├── D43.PNG │ └── D44.PNG ├── person.jpg ├── scream.jpg ├── shortnames.txt └── training_list.txt ├── voc.names └── workingcfg.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/README.md -------------------------------------------------------------------------------- /cfg/alexnet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/alexnet.cfg -------------------------------------------------------------------------------- /cfg/darknet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/darknet.cfg -------------------------------------------------------------------------------- /cfg/extraction.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/extraction.cfg -------------------------------------------------------------------------------- /cfg/extraction.conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/extraction.conv.cfg -------------------------------------------------------------------------------- /cfg/jack.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/jack.cfg -------------------------------------------------------------------------------- /cfg/jnet-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/jnet-conv.cfg -------------------------------------------------------------------------------- /cfg/msr_152.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/msr_152.cfg -------------------------------------------------------------------------------- /cfg/msr_34.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/msr_34.cfg -------------------------------------------------------------------------------- /cfg/msr_50.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/msr_50.cfg -------------------------------------------------------------------------------- /cfg/strided.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/strided.cfg -------------------------------------------------------------------------------- /cfg/vgg-16.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/vgg-16.cfg -------------------------------------------------------------------------------- /cfg/vgg-conv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/vgg-conv.cfg -------------------------------------------------------------------------------- /cfg/writing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/writing.cfg -------------------------------------------------------------------------------- /cfg/yolo-coco.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo-coco.cfg -------------------------------------------------------------------------------- /cfg/yolo-small.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo-small.cfg -------------------------------------------------------------------------------- /cfg/yolo-tiny-rd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo-tiny-rd.cfg -------------------------------------------------------------------------------- /cfg/yolo-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo-tiny.cfg -------------------------------------------------------------------------------- /cfg/yolo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo.cfg -------------------------------------------------------------------------------- /cfg/yolo_2class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo_2class -------------------------------------------------------------------------------- /cfg/yolo_2class_box11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/cfg/yolo_2class_box11.cfg -------------------------------------------------------------------------------- /convert_xml_to_txt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/convert_xml_to_txt.ipynb -------------------------------------------------------------------------------- /create_txt_file.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/create_txt_file.ipynb -------------------------------------------------------------------------------- /src/cfgconst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/cfgconst.py -------------------------------------------------------------------------------- /src/cfgconst.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/cfgconst.pyc -------------------------------------------------------------------------------- /src/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/darknet.py -------------------------------------------------------------------------------- /src/darknet.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/darknet.pyc -------------------------------------------------------------------------------- /src/ddd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/ddd.py -------------------------------------------------------------------------------- /src/ddd.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/ddd.pyc -------------------------------------------------------------------------------- /src/kerasmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/kerasmodel.py -------------------------------------------------------------------------------- /src/kerasmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/kerasmodel.pyc -------------------------------------------------------------------------------- /src/opcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/opcv.py -------------------------------------------------------------------------------- /src/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/parse.py -------------------------------------------------------------------------------- /src/parse.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/parse.pyc -------------------------------------------------------------------------------- /src/testyololoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/testyololoss.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/utils.pyc -------------------------------------------------------------------------------- /src/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/yolo.py -------------------------------------------------------------------------------- /src/yolodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/yolodata.py -------------------------------------------------------------------------------- /src/yolodata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/src/yolodata.pyc -------------------------------------------------------------------------------- /testlist.txt: -------------------------------------------------------------------------------- 1 | train_data/images/Numazu_20170907145417.jpg -------------------------------------------------------------------------------- /trainlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/trainlist.txt -------------------------------------------------------------------------------- /ui_data/after_conversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/after_conversion.txt -------------------------------------------------------------------------------- /ui_data/before_conversion.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 61 90 72 103 3 | 198 5 243 54 4 | -------------------------------------------------------------------------------- /ui_data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/dog.jpg -------------------------------------------------------------------------------- /ui_data/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/eagle.jpg -------------------------------------------------------------------------------- /ui_data/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/horses.jpg -------------------------------------------------------------------------------- /ui_data/inet.labels.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/inet.labels.list -------------------------------------------------------------------------------- /ui_data/labels/D00.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D00.PNG -------------------------------------------------------------------------------- /ui_data/labels/D01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D01.PNG -------------------------------------------------------------------------------- /ui_data/labels/D10.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D10.PNG -------------------------------------------------------------------------------- /ui_data/labels/D11.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D11.PNG -------------------------------------------------------------------------------- /ui_data/labels/D20.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D20.PNG -------------------------------------------------------------------------------- /ui_data/labels/D40.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D40.PNG -------------------------------------------------------------------------------- /ui_data/labels/D43.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D43.PNG -------------------------------------------------------------------------------- /ui_data/labels/D44.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/labels/D44.PNG -------------------------------------------------------------------------------- /ui_data/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/person.jpg -------------------------------------------------------------------------------- /ui_data/scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/scream.jpg -------------------------------------------------------------------------------- /ui_data/shortnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/shortnames.txt -------------------------------------------------------------------------------- /ui_data/training_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/ui_data/training_list.txt -------------------------------------------------------------------------------- /voc.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/voc.names -------------------------------------------------------------------------------- /workingcfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Road-damage-detection/HEAD/workingcfg.txt --------------------------------------------------------------------------------