├── .github ├── FUNDING.yml ├── First_Time_Contributors.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── showcase-your-project.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── greetings.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── css ├── bootstrap.min.css ├── imglabfonts.css ├── jquery-confirm.min.css ├── jquery-editable-select.min.css ├── menu.css ├── menu.min.css ├── slider.1.css ├── slider.1.min.css ├── snackbar.css ├── snackbar.min.css ├── style.css ├── style.min.css ├── svg.css ├── svg.min.css ├── svg.select.min.css ├── taggle.min.css ├── tags.css └── tags.min.css ├── dataformaters ├── coco.js ├── dlib.js └── pascal_voc.js ├── docs ├── features.md ├── guide.md └── technical.md ├── faceppSampleResponse.json ├── fonts ├── imglabfonts.eot ├── imglabfonts.svg ├── imglabfonts.ttf ├── imglabfonts.woff └── imglabfonts.woff2 ├── img ├── favicons │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── icons │ ├── Offline_logo.svg │ ├── circle.svg │ ├── clock.svg │ ├── files-white.png │ ├── keyboard.svg │ ├── menu.svg │ ├── move.svg │ ├── open.png │ ├── point.svg │ ├── polygon.svg │ ├── rectangle.svg │ ├── zoomin.svg │ └── zoomout.svg ├── imglab-autosuggestion.gif ├── imglab-fpp.gif ├── imglab-hotkeys.gif ├── imglab-polygon.gif ├── imglab-zoom.gif ├── imglab.png ├── imglab_logo.png ├── imglab_vision.png ├── left-paddle-white.png ├── left-paddle.png ├── right-paddle-white.png ├── right-paddle.png ├── support_patreon.svg ├── support_paypal.svg ├── tez_logo2.png └── tez_qrcode.png ├── imglab-fonts ├── LICENSE.txt ├── README.txt ├── config.json ├── css │ ├── animation.css │ ├── imglabfonts-codes.css │ ├── imglabfonts-embedded.css │ ├── imglabfonts-ie7-codes.css │ ├── imglabfonts-ie7.css │ └── imglabfonts.css ├── demo.html └── font │ ├── imglabfonts.eot │ ├── imglabfonts.svg │ ├── imglabfonts.ttf │ ├── imglabfonts.woff │ └── imglabfonts.woff2 ├── index.html ├── js ├── app.js ├── config.js ├── contributors.js ├── nimnObjStructure.js ├── openfile.js ├── prompt.js ├── savefile.js ├── settings.js ├── store.js ├── storePersistor.js └── thirdparty │ ├── Blob.js │ ├── FileSaver.min.js │ ├── bootstrap.min.js │ ├── fxp.js │ ├── jquery-confirm.min.js │ ├── jquery-editable-select.min.js │ ├── jquery-ui.min.js │ ├── jquery.min.js │ ├── jszip.min.js │ ├── nimn.js │ ├── riot+compiler.min.js │ ├── riot.min.js │ ├── svg.draggable.min.js │ ├── svg.draw.min.js │ ├── svg.min.js │ ├── svg.resize.min.js │ ├── svg.select.min.js │ └── taggle.min.js ├── privacy-policy.html ├── tags ├── actionbar.tag.html ├── actions │ ├── colorpicker-action.tag.html │ ├── landmark-action.tag.html │ ├── lightbulb-action.tag.html │ └── zoom-action.tag.html ├── attributes-list.tag.html ├── cookie-alert.tag.html ├── images-slider.tag.html ├── label-panel.tag.html ├── menu.tag.html ├── pluginWindow.tag.html ├── plugins │ └── facepp.tag.html ├── pluginsMenu.tag.html ├── settings-window.tag.html ├── shortcuts.tag.html ├── tags.js ├── toolbox.tag.html ├── trackinglines.tag.html └── workarea.tag.html └── vision.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/First_Time_Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/First_Time_Contributors.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/showcase-your-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/ISSUE_TEMPLATE/showcase-your-project.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/imglabfonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/imglabfonts.css -------------------------------------------------------------------------------- /css/jquery-confirm.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/jquery-confirm.min.css -------------------------------------------------------------------------------- /css/jquery-editable-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/jquery-editable-select.min.css -------------------------------------------------------------------------------- /css/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/menu.css -------------------------------------------------------------------------------- /css/menu.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/menu.min.css -------------------------------------------------------------------------------- /css/slider.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/slider.1.css -------------------------------------------------------------------------------- /css/slider.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/slider.1.min.css -------------------------------------------------------------------------------- /css/snackbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/snackbar.css -------------------------------------------------------------------------------- /css/snackbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/snackbar.min.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/style.css -------------------------------------------------------------------------------- /css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/style.min.css -------------------------------------------------------------------------------- /css/svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/svg.css -------------------------------------------------------------------------------- /css/svg.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/svg.min.css -------------------------------------------------------------------------------- /css/svg.select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/svg.select.min.css -------------------------------------------------------------------------------- /css/taggle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/taggle.min.css -------------------------------------------------------------------------------- /css/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/tags.css -------------------------------------------------------------------------------- /css/tags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/css/tags.min.css -------------------------------------------------------------------------------- /dataformaters/coco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/dataformaters/coco.js -------------------------------------------------------------------------------- /dataformaters/dlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/dataformaters/dlib.js -------------------------------------------------------------------------------- /dataformaters/pascal_voc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/dataformaters/pascal_voc.js -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/docs/technical.md -------------------------------------------------------------------------------- /faceppSampleResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/faceppSampleResponse.json -------------------------------------------------------------------------------- /fonts/imglabfonts.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/fonts/imglabfonts.eot -------------------------------------------------------------------------------- /fonts/imglabfonts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/fonts/imglabfonts.svg -------------------------------------------------------------------------------- /fonts/imglabfonts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/fonts/imglabfonts.ttf -------------------------------------------------------------------------------- /fonts/imglabfonts.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/fonts/imglabfonts.woff -------------------------------------------------------------------------------- /fonts/imglabfonts.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/fonts/imglabfonts.woff2 -------------------------------------------------------------------------------- /img/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /img/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /img/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /img/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /img/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /img/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /img/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /img/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/apple-icon.png -------------------------------------------------------------------------------- /img/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/browserconfig.xml -------------------------------------------------------------------------------- /img/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /img/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /img/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /img/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/favicon.ico -------------------------------------------------------------------------------- /img/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/manifest.json -------------------------------------------------------------------------------- /img/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /img/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /img/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /img/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /img/icons/Offline_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/Offline_logo.svg -------------------------------------------------------------------------------- /img/icons/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/circle.svg -------------------------------------------------------------------------------- /img/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/clock.svg -------------------------------------------------------------------------------- /img/icons/files-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/files-white.png -------------------------------------------------------------------------------- /img/icons/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/keyboard.svg -------------------------------------------------------------------------------- /img/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/menu.svg -------------------------------------------------------------------------------- /img/icons/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/move.svg -------------------------------------------------------------------------------- /img/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/open.png -------------------------------------------------------------------------------- /img/icons/point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/point.svg -------------------------------------------------------------------------------- /img/icons/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/polygon.svg -------------------------------------------------------------------------------- /img/icons/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/rectangle.svg -------------------------------------------------------------------------------- /img/icons/zoomin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/zoomin.svg -------------------------------------------------------------------------------- /img/icons/zoomout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/icons/zoomout.svg -------------------------------------------------------------------------------- /img/imglab-autosuggestion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab-autosuggestion.gif -------------------------------------------------------------------------------- /img/imglab-fpp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab-fpp.gif -------------------------------------------------------------------------------- /img/imglab-hotkeys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab-hotkeys.gif -------------------------------------------------------------------------------- /img/imglab-polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab-polygon.gif -------------------------------------------------------------------------------- /img/imglab-zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab-zoom.gif -------------------------------------------------------------------------------- /img/imglab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab.png -------------------------------------------------------------------------------- /img/imglab_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab_logo.png -------------------------------------------------------------------------------- /img/imglab_vision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/imglab_vision.png -------------------------------------------------------------------------------- /img/left-paddle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/left-paddle-white.png -------------------------------------------------------------------------------- /img/left-paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/left-paddle.png -------------------------------------------------------------------------------- /img/right-paddle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/right-paddle-white.png -------------------------------------------------------------------------------- /img/right-paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/right-paddle.png -------------------------------------------------------------------------------- /img/support_patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/support_patreon.svg -------------------------------------------------------------------------------- /img/support_paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/support_paypal.svg -------------------------------------------------------------------------------- /img/tez_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/tez_logo2.png -------------------------------------------------------------------------------- /img/tez_qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/img/tez_qrcode.png -------------------------------------------------------------------------------- /imglab-fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/LICENSE.txt -------------------------------------------------------------------------------- /imglab-fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/README.txt -------------------------------------------------------------------------------- /imglab-fonts/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/config.json -------------------------------------------------------------------------------- /imglab-fonts/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/animation.css -------------------------------------------------------------------------------- /imglab-fonts/css/imglabfonts-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/imglabfonts-codes.css -------------------------------------------------------------------------------- /imglab-fonts/css/imglabfonts-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/imglabfonts-embedded.css -------------------------------------------------------------------------------- /imglab-fonts/css/imglabfonts-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/imglabfonts-ie7-codes.css -------------------------------------------------------------------------------- /imglab-fonts/css/imglabfonts-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/imglabfonts-ie7.css -------------------------------------------------------------------------------- /imglab-fonts/css/imglabfonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/css/imglabfonts.css -------------------------------------------------------------------------------- /imglab-fonts/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/demo.html -------------------------------------------------------------------------------- /imglab-fonts/font/imglabfonts.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/font/imglabfonts.eot -------------------------------------------------------------------------------- /imglab-fonts/font/imglabfonts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/font/imglabfonts.svg -------------------------------------------------------------------------------- /imglab-fonts/font/imglabfonts.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/font/imglabfonts.ttf -------------------------------------------------------------------------------- /imglab-fonts/font/imglabfonts.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/font/imglabfonts.woff -------------------------------------------------------------------------------- /imglab-fonts/font/imglabfonts.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/imglab-fonts/font/imglabfonts.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/app.js -------------------------------------------------------------------------------- /js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/config.js -------------------------------------------------------------------------------- /js/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/contributors.js -------------------------------------------------------------------------------- /js/nimnObjStructure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/nimnObjStructure.js -------------------------------------------------------------------------------- /js/openfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/openfile.js -------------------------------------------------------------------------------- /js/prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/prompt.js -------------------------------------------------------------------------------- /js/savefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/savefile.js -------------------------------------------------------------------------------- /js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/settings.js -------------------------------------------------------------------------------- /js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/store.js -------------------------------------------------------------------------------- /js/storePersistor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/storePersistor.js -------------------------------------------------------------------------------- /js/thirdparty/Blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/Blob.js -------------------------------------------------------------------------------- /js/thirdparty/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/FileSaver.min.js -------------------------------------------------------------------------------- /js/thirdparty/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/bootstrap.min.js -------------------------------------------------------------------------------- /js/thirdparty/fxp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/fxp.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/jquery-confirm.min.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-editable-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/jquery-editable-select.min.js -------------------------------------------------------------------------------- /js/thirdparty/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/jquery-ui.min.js -------------------------------------------------------------------------------- /js/thirdparty/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/jquery.min.js -------------------------------------------------------------------------------- /js/thirdparty/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/jszip.min.js -------------------------------------------------------------------------------- /js/thirdparty/nimn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/nimn.js -------------------------------------------------------------------------------- /js/thirdparty/riot+compiler.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/riot+compiler.min.js -------------------------------------------------------------------------------- /js/thirdparty/riot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/riot.min.js -------------------------------------------------------------------------------- /js/thirdparty/svg.draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/svg.draggable.min.js -------------------------------------------------------------------------------- /js/thirdparty/svg.draw.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/svg.draw.min.js -------------------------------------------------------------------------------- /js/thirdparty/svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/svg.min.js -------------------------------------------------------------------------------- /js/thirdparty/svg.resize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/svg.resize.min.js -------------------------------------------------------------------------------- /js/thirdparty/svg.select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/svg.select.min.js -------------------------------------------------------------------------------- /js/thirdparty/taggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/js/thirdparty/taggle.min.js -------------------------------------------------------------------------------- /privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/privacy-policy.html -------------------------------------------------------------------------------- /tags/actionbar.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/actionbar.tag.html -------------------------------------------------------------------------------- /tags/actions/colorpicker-action.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/actions/colorpicker-action.tag.html -------------------------------------------------------------------------------- /tags/actions/landmark-action.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/actions/landmark-action.tag.html -------------------------------------------------------------------------------- /tags/actions/lightbulb-action.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/actions/lightbulb-action.tag.html -------------------------------------------------------------------------------- /tags/actions/zoom-action.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/actions/zoom-action.tag.html -------------------------------------------------------------------------------- /tags/attributes-list.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/attributes-list.tag.html -------------------------------------------------------------------------------- /tags/cookie-alert.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/cookie-alert.tag.html -------------------------------------------------------------------------------- /tags/images-slider.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/images-slider.tag.html -------------------------------------------------------------------------------- /tags/label-panel.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/label-panel.tag.html -------------------------------------------------------------------------------- /tags/menu.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/menu.tag.html -------------------------------------------------------------------------------- /tags/pluginWindow.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/pluginWindow.tag.html -------------------------------------------------------------------------------- /tags/plugins/facepp.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/plugins/facepp.tag.html -------------------------------------------------------------------------------- /tags/pluginsMenu.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/pluginsMenu.tag.html -------------------------------------------------------------------------------- /tags/settings-window.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/settings-window.tag.html -------------------------------------------------------------------------------- /tags/shortcuts.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/shortcuts.tag.html -------------------------------------------------------------------------------- /tags/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/tags.js -------------------------------------------------------------------------------- /tags/toolbox.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/toolbox.tag.html -------------------------------------------------------------------------------- /tags/trackinglines.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/trackinglines.tag.html -------------------------------------------------------------------------------- /tags/workarea.tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/tags/workarea.tag.html -------------------------------------------------------------------------------- /vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NaturalIntelligence/imglab/HEAD/vision.md --------------------------------------------------------------------------------