├── README.md ├── imgcrawler ├── __init__.py ├── crawler_func.py ├── crawler_ui.py ├── filter_ui.py ├── labelImg │ ├── .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 │ ├── 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 │ │ ├── hashableQListWidgetItem.py │ │ ├── labelDialog.py │ │ ├── labelFile.py │ │ ├── pascal_voc_io.py │ │ ├── settings.py │ │ ├── shape.py │ │ ├── stringBundle.py │ │ ├── toolBar.py │ │ ├── ustr.py │ │ ├── utils.py │ │ ├── version.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_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-TW.properties │ │ │ └── strings.properties │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── test.512.512.bmp │ │ ├── test_io.py │ │ ├── test_qt.py │ │ ├── test_settings.py │ │ ├── test_stringBundle.py │ │ ├── test_utils.py │ │ └── 臉書.jpg ├── main.py ├── 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_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 ├── settings.txt ├── settings_ui.py └── tmp │ ├── crawler_ui2.py │ ├── crawler_ui2.ui │ ├── filter_ui2.py │ ├── filter_ui2.ui │ └── settings_ui2.ui ├── requirement.txt └── settings.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/README.md -------------------------------------------------------------------------------- /imgcrawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgcrawler/crawler_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/crawler_func.py -------------------------------------------------------------------------------- /imgcrawler/crawler_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/crawler_ui.py -------------------------------------------------------------------------------- /imgcrawler/filter_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/filter_ui.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/.gitignore -------------------------------------------------------------------------------- /imgcrawler/labelImg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/.travis.yml -------------------------------------------------------------------------------- /imgcrawler/labelImg/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/CONTRIBUTING.rst -------------------------------------------------------------------------------- /imgcrawler/labelImg/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/HISTORY.rst -------------------------------------------------------------------------------- /imgcrawler/labelImg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/LICENSE -------------------------------------------------------------------------------- /imgcrawler/labelImg/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/MANIFEST.in -------------------------------------------------------------------------------- /imgcrawler/labelImg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/Makefile -------------------------------------------------------------------------------- /imgcrawler/labelImg/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/README.rst -------------------------------------------------------------------------------- /imgcrawler/labelImg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/.gitignore -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/README.md -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/build-for-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/build-for-macos.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/build-for-pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/build-for-pypi.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/build-ubuntu-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/build-ubuntu-binary.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/build-windows-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/build-windows-binary.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/envsetup.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/build-tools/run-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/build-tools/run-in-container.sh -------------------------------------------------------------------------------- /imgcrawler/labelImg/data/predefined_classes.txt: -------------------------------------------------------------------------------- 1 | kdy -------------------------------------------------------------------------------- /imgcrawler/labelImg/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/demo/demo.jpg -------------------------------------------------------------------------------- /imgcrawler/labelImg/demo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/demo/demo3.jpg -------------------------------------------------------------------------------- /imgcrawler/labelImg/demo/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/demo/demo4.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/demo/demo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/demo/demo5.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/issue_template.md -------------------------------------------------------------------------------- /imgcrawler/labelImg/labelImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/labelImg.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/canvas.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/colorDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/colorDialog.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/constants.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/hashableQListWidgetItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/hashableQListWidgetItem.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/labelDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/labelDialog.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/labelFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/labelFile.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/pascal_voc_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/pascal_voc_io.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/settings.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/shape.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/stringBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/stringBundle.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/toolBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/toolBar.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/ustr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/ustr.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/utils.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/version.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/yolo_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/yolo_io.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/libs/zoomWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/libs/zoomWidget.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/requirements/requirements-linux-python3.txt: -------------------------------------------------------------------------------- 1 | pyqt5==5.10.1 2 | lxml==4.9.1 3 | -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources.qrc -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/app.icns -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/app.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/app.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/cancel.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/close.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/color.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/color_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/color_line.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/copy.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/delete.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/done.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/done.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/edit.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/expert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/expert1.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/expert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/expert2.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/eye.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/feBlend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/feBlend-icon.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/file.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/fit-width.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/fit-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/fit-window.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/fit.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/format_voc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/format_voc.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/format_yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/format_yolo.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/help.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/labels.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/labels.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/new.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/next.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/objects.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/open.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/open.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/prev.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/quit.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/resetall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/resetall.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/save-as.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/save-as.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/save.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/save.svg -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/undo-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/undo-cross.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/undo.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/verify.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/zoom-in.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/zoom-out.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/icons/zoom.png -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/strings/strings-zh-TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/strings/strings-zh-TW.properties -------------------------------------------------------------------------------- /imgcrawler/labelImg/resources/strings/strings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/resources/strings/strings.properties -------------------------------------------------------------------------------- /imgcrawler/labelImg/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/setup.cfg -------------------------------------------------------------------------------- /imgcrawler/labelImg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/setup.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/.gitignore: -------------------------------------------------------------------------------- 1 | test.xml 2 | -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test.512.512.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test.512.512.bmp -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test_io.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test_qt.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test_settings.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test_stringBundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test_stringBundle.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/test_utils.py -------------------------------------------------------------------------------- /imgcrawler/labelImg/tests/臉書.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/labelImg/tests/臉書.jpg -------------------------------------------------------------------------------- /imgcrawler/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/main.py -------------------------------------------------------------------------------- /imgcrawler/resources/icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/app.icns -------------------------------------------------------------------------------- /imgcrawler/resources/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/app.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/app.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/cancel.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/close.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/color.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/color_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/color_line.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/copy.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/delete.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/done.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/done.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/edit.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/expert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/expert1.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/expert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/expert2.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/eye.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/feBlend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/feBlend-icon.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/file.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/fit-width.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/fit-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/fit-window.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/fit.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/format_voc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/format_voc.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/format_yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/format_yolo.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/help.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/labels.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/labels.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/new.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/next.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/objects.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/open.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/open.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/prev.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/quit.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/resetall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/resetall.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/save-as.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/save-as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/save-as.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/save.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/save.svg -------------------------------------------------------------------------------- /imgcrawler/resources/icons/undo-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/undo-cross.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/undo.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/verify.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/zoom-in.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/zoom-out.png -------------------------------------------------------------------------------- /imgcrawler/resources/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/resources/icons/zoom.png -------------------------------------------------------------------------------- /imgcrawler/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/settings.txt -------------------------------------------------------------------------------- /imgcrawler/settings_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/settings_ui.py -------------------------------------------------------------------------------- /imgcrawler/tmp/crawler_ui2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/tmp/crawler_ui2.py -------------------------------------------------------------------------------- /imgcrawler/tmp/crawler_ui2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/tmp/crawler_ui2.ui -------------------------------------------------------------------------------- /imgcrawler/tmp/filter_ui2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/tmp/filter_ui2.py -------------------------------------------------------------------------------- /imgcrawler/tmp/filter_ui2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/tmp/filter_ui2.ui -------------------------------------------------------------------------------- /imgcrawler/tmp/settings_ui2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/imgcrawler/tmp/settings_ui2.ui -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/requirement.txt -------------------------------------------------------------------------------- /settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxylon/imgcrawler-tool/HEAD/settings.txt --------------------------------------------------------------------------------