├── Demo ├── Demo.exp ├── Demo.lib ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Svg.dll ├── Qt5Widgets.dll ├── cfg │ ├── 1.cfg │ ├── 2.cfg │ └── road.names ├── exe_ico.res ├── iconengines │ └── qsvgicon.dll ├── imageformats │ ├── qgif.dll │ ├── qicns.dll │ ├── qico.dll │ ├── qjpeg.dll │ ├── qsvg.dll │ ├── qtga.dll │ ├── qtiff.dll │ ├── qwbmp.dll │ └── qwebp.dll ├── libEGL.dll ├── libGLESV2.dll ├── main.obj ├── mainwindow.obj ├── moc_mainwindow.cpp ├── moc_mainwindow.obj ├── moc_predefs.h ├── opengl32sw.dll ├── platforms │ └── qwindows.dll ├── pthreadGC2.dll ├── pthreadVC2.dll ├── qrc_demo_icon.cpp ├── qrc_demo_icon.obj ├── styles │ └── qwindowsvistastyle.dll ├── translations │ ├── qt_ar.qm │ ├── qt_bg.qm │ ├── qt_ca.qm │ ├── qt_cs.qm │ ├── qt_da.qm │ ├── qt_de.qm │ ├── qt_en.qm │ ├── qt_es.qm │ ├── qt_fi.qm │ ├── qt_fr.qm │ ├── qt_gd.qm │ ├── qt_he.qm │ ├── qt_hu.qm │ ├── qt_it.qm │ ├── qt_ja.qm │ ├── qt_ko.qm │ ├── qt_lv.qm │ ├── qt_pl.qm │ ├── qt_ru.qm │ ├── qt_sk.qm │ ├── qt_uk.qm │ └── qt_zh_TW.qm ├── yolo_cpp_dll.dll ├── yolo_cpp_dll.lib ├── yolo_cpp_dll_no_gpu.dll ├── yolo_cpp_dll_no_gpu.lib ├── yolo_v2_class.hpp └── 道路损伤检测演示系统.exe ├── README.md ├── demo screen record.mp4 ├── demo_ui_img ├── dataset_composition.png ├── img_detect_result.png ├── load_img.png ├── load_video.png ├── model_performance.png ├── model_performance_based_on_demo.png ├── ui.png └── video_detect_result.png ├── experiment └── README.md └── test_data ├── img ├── Adachi_20170906093840.jpg ├── Adachi_20170906093856.jpg ├── Adachi_20170906093954.jpg ├── Adachi_20170906102549.jpg ├── Adachi_20170906151249.jpg ├── Adachi_20170906151558.jpg ├── Adachi_20170906151601.jpg ├── Adachi_20170906153255.jpg ├── Adachi_20170906160907.jpg ├── Adachi_20170907135847.jpg ├── Adachi_20170908100110.jpg ├── Adachi_20170908104022.jpg ├── Adachi_20170908135711.jpg ├── Adachi_20170912143707.jpg ├── Adachi_20170912151324.jpg ├── Numazu_20170906092716.jpg ├── Numazu_20170906153850.jpg ├── Sumida_20170908164826.jpg ├── Sumida_20170915155212.jpg └── Sumida_20170921093956.jpg └── video └── test_video.mp4 /Demo/Demo.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Demo.exp -------------------------------------------------------------------------------- /Demo/Demo.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Demo.lib -------------------------------------------------------------------------------- /Demo/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Qt5Core.dll -------------------------------------------------------------------------------- /Demo/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Qt5Gui.dll -------------------------------------------------------------------------------- /Demo/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Qt5Svg.dll -------------------------------------------------------------------------------- /Demo/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/Qt5Widgets.dll -------------------------------------------------------------------------------- /Demo/cfg/1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/cfg/1.cfg -------------------------------------------------------------------------------- /Demo/cfg/2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/cfg/2.cfg -------------------------------------------------------------------------------- /Demo/cfg/road.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/cfg/road.names -------------------------------------------------------------------------------- /Demo/exe_ico.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/exe_ico.res -------------------------------------------------------------------------------- /Demo/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /Demo/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qgif.dll -------------------------------------------------------------------------------- /Demo/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qicns.dll -------------------------------------------------------------------------------- /Demo/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qico.dll -------------------------------------------------------------------------------- /Demo/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /Demo/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qsvg.dll -------------------------------------------------------------------------------- /Demo/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qtga.dll -------------------------------------------------------------------------------- /Demo/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qtiff.dll -------------------------------------------------------------------------------- /Demo/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /Demo/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/imageformats/qwebp.dll -------------------------------------------------------------------------------- /Demo/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/libEGL.dll -------------------------------------------------------------------------------- /Demo/libGLESV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/libGLESV2.dll -------------------------------------------------------------------------------- /Demo/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/main.obj -------------------------------------------------------------------------------- /Demo/mainwindow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/mainwindow.obj -------------------------------------------------------------------------------- /Demo/moc_mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/moc_mainwindow.cpp -------------------------------------------------------------------------------- /Demo/moc_mainwindow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/moc_mainwindow.obj -------------------------------------------------------------------------------- /Demo/moc_predefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/moc_predefs.h -------------------------------------------------------------------------------- /Demo/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/opengl32sw.dll -------------------------------------------------------------------------------- /Demo/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/platforms/qwindows.dll -------------------------------------------------------------------------------- /Demo/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/pthreadGC2.dll -------------------------------------------------------------------------------- /Demo/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/pthreadVC2.dll -------------------------------------------------------------------------------- /Demo/qrc_demo_icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/qrc_demo_icon.cpp -------------------------------------------------------------------------------- /Demo/qrc_demo_icon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/qrc_demo_icon.obj -------------------------------------------------------------------------------- /Demo/styles/qwindowsvistastyle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/styles/qwindowsvistastyle.dll -------------------------------------------------------------------------------- /Demo/translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_ar.qm -------------------------------------------------------------------------------- /Demo/translations/qt_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_bg.qm -------------------------------------------------------------------------------- /Demo/translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_ca.qm -------------------------------------------------------------------------------- /Demo/translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_cs.qm -------------------------------------------------------------------------------- /Demo/translations/qt_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_da.qm -------------------------------------------------------------------------------- /Demo/translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_de.qm -------------------------------------------------------------------------------- /Demo/translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_en.qm -------------------------------------------------------------------------------- /Demo/translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_es.qm -------------------------------------------------------------------------------- /Demo/translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_fi.qm -------------------------------------------------------------------------------- /Demo/translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_fr.qm -------------------------------------------------------------------------------- /Demo/translations/qt_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_gd.qm -------------------------------------------------------------------------------- /Demo/translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_he.qm -------------------------------------------------------------------------------- /Demo/translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_hu.qm -------------------------------------------------------------------------------- /Demo/translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_it.qm -------------------------------------------------------------------------------- /Demo/translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_ja.qm -------------------------------------------------------------------------------- /Demo/translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_ko.qm -------------------------------------------------------------------------------- /Demo/translations/qt_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_lv.qm -------------------------------------------------------------------------------- /Demo/translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_pl.qm -------------------------------------------------------------------------------- /Demo/translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_ru.qm -------------------------------------------------------------------------------- /Demo/translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_sk.qm -------------------------------------------------------------------------------- /Demo/translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_uk.qm -------------------------------------------------------------------------------- /Demo/translations/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/translations/qt_zh_TW.qm -------------------------------------------------------------------------------- /Demo/yolo_cpp_dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/yolo_cpp_dll.dll -------------------------------------------------------------------------------- /Demo/yolo_cpp_dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/yolo_cpp_dll.lib -------------------------------------------------------------------------------- /Demo/yolo_cpp_dll_no_gpu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/yolo_cpp_dll_no_gpu.dll -------------------------------------------------------------------------------- /Demo/yolo_cpp_dll_no_gpu.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/yolo_cpp_dll_no_gpu.lib -------------------------------------------------------------------------------- /Demo/yolo_v2_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/yolo_v2_class.hpp -------------------------------------------------------------------------------- /Demo/道路损伤检测演示系统.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/Demo/道路损伤检测演示系统.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/README.md -------------------------------------------------------------------------------- /demo screen record.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo screen record.mp4 -------------------------------------------------------------------------------- /demo_ui_img/dataset_composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/dataset_composition.png -------------------------------------------------------------------------------- /demo_ui_img/img_detect_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/img_detect_result.png -------------------------------------------------------------------------------- /demo_ui_img/load_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/load_img.png -------------------------------------------------------------------------------- /demo_ui_img/load_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/load_video.png -------------------------------------------------------------------------------- /demo_ui_img/model_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/model_performance.png -------------------------------------------------------------------------------- /demo_ui_img/model_performance_based_on_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/model_performance_based_on_demo.png -------------------------------------------------------------------------------- /demo_ui_img/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/ui.png -------------------------------------------------------------------------------- /demo_ui_img/video_detect_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/demo_ui_img/video_detect_result.png -------------------------------------------------------------------------------- /experiment/README.md: -------------------------------------------------------------------------------- 1 | # 模型训练配置 2 | - 详细文件可于百度[网盘下载](https://pan.baidu.com/s/1hYHhQPItr2wiAt9smm8_cw),提取码:ntlz 3 | -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906093840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906093840.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906093856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906093856.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906093954.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906093954.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906102549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906102549.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906151249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906151249.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906151558.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906151558.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906151601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906151601.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906153255.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906153255.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170906160907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170906160907.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170907135847.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170907135847.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170908100110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170908100110.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170908104022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170908104022.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170908135711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170908135711.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170912143707.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170912143707.jpg -------------------------------------------------------------------------------- /test_data/img/Adachi_20170912151324.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Adachi_20170912151324.jpg -------------------------------------------------------------------------------- /test_data/img/Numazu_20170906092716.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Numazu_20170906092716.jpg -------------------------------------------------------------------------------- /test_data/img/Numazu_20170906153850.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Numazu_20170906153850.jpg -------------------------------------------------------------------------------- /test_data/img/Sumida_20170908164826.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Sumida_20170908164826.jpg -------------------------------------------------------------------------------- /test_data/img/Sumida_20170915155212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Sumida_20170915155212.jpg -------------------------------------------------------------------------------- /test_data/img/Sumida_20170921093956.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/img/Sumida_20170921093956.jpg -------------------------------------------------------------------------------- /test_data/video/test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GaoKangYu/Road-Damage-Detection-System/HEAD/test_data/video/test_video.mp4 --------------------------------------------------------------------------------