├── README.md ├── YoloV3-tiny_Train_tf.ipynb ├── YoloV3-tiny_tf.ipynb ├── YoloV4_Train_tf.ipynb ├── YoloV4_tf.ipynb ├── create_own_data ├── create_own_data.ipynb └── labelImg-master │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.rst │ ├── HISTORY.rst │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.rst │ ├── __init__.py │ ├── build-tools │ ├── .gitignore │ ├── README.md │ ├── build-for-macos.sh │ ├── build-for-pypi.sh │ ├── build-ubuntu-binary.sh │ ├── build-windows-binary.sh │ ├── envsetup.sh │ └── run-in-container.sh │ ├── combobox.py │ ├── data │ └── predefined_classes.txt │ ├── demo │ ├── demo.jpg │ ├── demo3.jpg │ ├── demo4.png │ └── demo5.png │ ├── issue_template.md │ ├── labelImg.py │ ├── libs │ ├── __init__.py │ ├── canvas.py │ ├── colorDialog.py │ ├── constants.py │ ├── create_ml_io.py │ ├── hashableQListWidgetItem.py │ ├── labelDialog.py │ ├── labelFile.py │ ├── pascal_voc_io.py │ ├── settings.py │ ├── shape.py │ ├── stringBundle.py │ ├── toolBar.py │ ├── ustr.py │ ├── utils.py │ ├── yolo_io.py │ └── zoomWidget.py │ ├── requirements │ └── requirements-linux-python3.txt │ ├── resources.qrc │ ├── resources │ ├── icons │ │ ├── app.icns │ │ ├── app.png │ │ ├── app.svg │ │ ├── cancel.png │ │ ├── close.png │ │ ├── color.png │ │ ├── color_line.png │ │ ├── copy.png │ │ ├── delete.png │ │ ├── done.png │ │ ├── done.svg │ │ ├── edit.png │ │ ├── expert1.png │ │ ├── expert2.png │ │ ├── eye.png │ │ ├── feBlend-icon.png │ │ ├── file.png │ │ ├── fit-width.png │ │ ├── fit-window.png │ │ ├── fit.png │ │ ├── format_createml.png │ │ ├── format_voc.png │ │ ├── format_yolo.png │ │ ├── help.png │ │ ├── labels.png │ │ ├── labels.svg │ │ ├── new.png │ │ ├── next.png │ │ ├── objects.png │ │ ├── open.png │ │ ├── open.svg │ │ ├── prev.png │ │ ├── quit.png │ │ ├── resetall.png │ │ ├── save-as.png │ │ ├── save-as.svg │ │ ├── save.png │ │ ├── save.svg │ │ ├── undo-cross.png │ │ ├── undo.png │ │ ├── verify.png │ │ ├── zoom-in.png │ │ ├── zoom-out.png │ │ └── zoom.png │ └── strings │ │ ├── strings-zh-CN.properties │ │ ├── strings-zh-TW.properties │ │ └── strings.properties │ ├── setup.cfg │ ├── setup.py │ └── tests │ ├── .gitignore │ ├── test.512.512.bmp │ ├── test_io.py │ ├── test_qt.py │ ├── test_settings.py │ ├── test_stringBundle.py │ ├── test_utils.py │ └── 臉書.jpg ├── images └── 6dogs.jpg ├── models └── yolo │ └── coco_classes.txt └── yolomodel.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/README.md -------------------------------------------------------------------------------- /YoloV3-tiny_Train_tf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/YoloV3-tiny_Train_tf.ipynb -------------------------------------------------------------------------------- /YoloV3-tiny_tf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/YoloV3-tiny_tf.ipynb -------------------------------------------------------------------------------- /YoloV4_Train_tf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/YoloV4_Train_tf.ipynb -------------------------------------------------------------------------------- /YoloV4_tf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/YoloV4_tf.ipynb -------------------------------------------------------------------------------- /create_own_data/create_own_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/create_own_data.ipynb -------------------------------------------------------------------------------- /create_own_data/labelImg-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/.gitignore -------------------------------------------------------------------------------- /create_own_data/labelImg-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/.travis.yml -------------------------------------------------------------------------------- /create_own_data/labelImg-master/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/CONTRIBUTING.rst -------------------------------------------------------------------------------- /create_own_data/labelImg-master/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/HISTORY.rst -------------------------------------------------------------------------------- /create_own_data/labelImg-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/LICENSE -------------------------------------------------------------------------------- /create_own_data/labelImg-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/MANIFEST.in -------------------------------------------------------------------------------- /create_own_data/labelImg-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/Makefile -------------------------------------------------------------------------------- /create_own_data/labelImg-master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/README.rst -------------------------------------------------------------------------------- /create_own_data/labelImg-master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/.gitignore -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/README.md -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/build-for-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/build-for-macos.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/build-for-pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/build-for-pypi.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/build-ubuntu-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/build-ubuntu-binary.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/build-windows-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/build-windows-binary.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/envsetup.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/build-tools/run-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/build-tools/run-in-container.sh -------------------------------------------------------------------------------- /create_own_data/labelImg-master/combobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/combobox.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/data/predefined_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/data/predefined_classes.txt -------------------------------------------------------------------------------- /create_own_data/labelImg-master/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/demo/demo.jpg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/demo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/demo/demo3.jpg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/demo/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/demo/demo4.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/demo/demo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/demo/demo5.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/issue_template.md -------------------------------------------------------------------------------- /create_own_data/labelImg-master/labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/labelImg.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/__init__.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/canvas.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/colorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/colorDialog.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/constants.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/create_ml_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/create_ml_io.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/hashableQListWidgetItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/hashableQListWidgetItem.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/labelDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/labelDialog.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/labelFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/labelFile.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/pascal_voc_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/pascal_voc_io.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/settings.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/shape.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/stringBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/stringBundle.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/toolBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/toolBar.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/ustr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/ustr.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/utils.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/yolo_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/yolo_io.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/libs/zoomWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/libs/zoomWidget.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/requirements/requirements-linux-python3.txt: -------------------------------------------------------------------------------- 1 | pyqt5==5.10.1 2 | lxml==4.2.4 3 | -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources.qrc -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/app.icns: -------------------------------------------------------------------------------- 1 | icns -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/app.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/app.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/cancel.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/close.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/color.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/color_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/color_line.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/copy.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/delete.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/done.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/done.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/edit.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/expert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/expert1.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/expert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/expert2.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/eye.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/feBlend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/feBlend-icon.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/file.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/fit-width.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/fit-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/fit-window.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/fit.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/format_createml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/format_createml.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/format_voc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/format_voc.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/format_yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/format_yolo.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/help.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/labels.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/labels.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/new.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/next.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/objects.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/open.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/open.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/prev.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/quit.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/resetall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/resetall.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/save-as.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/save-as.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/save.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/save.svg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/undo-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/undo-cross.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/undo.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/verify.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/zoom-in.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/zoom-out.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/icons/zoom.png -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/strings/strings-zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/strings/strings-zh-CN.properties -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/strings/strings-zh-TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/strings/strings-zh-TW.properties -------------------------------------------------------------------------------- /create_own_data/labelImg-master/resources/strings/strings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/resources/strings/strings.properties -------------------------------------------------------------------------------- /create_own_data/labelImg-master/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/setup.cfg -------------------------------------------------------------------------------- /create_own_data/labelImg-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/setup.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/.gitignore: -------------------------------------------------------------------------------- 1 | test.xml 2 | -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test.512.512.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test.512.512.bmp -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test_io.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test_qt.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test_settings.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test_stringBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test_stringBundle.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/test_utils.py -------------------------------------------------------------------------------- /create_own_data/labelImg-master/tests/臉書.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/create_own_data/labelImg-master/tests/臉書.jpg -------------------------------------------------------------------------------- /images/6dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/images/6dogs.jpg -------------------------------------------------------------------------------- /models/yolo/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/models/yolo/coco_classes.txt -------------------------------------------------------------------------------- /yolomodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobotEdh/Yolov-4/HEAD/yolomodel.png --------------------------------------------------------------------------------