├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── bg.webp ├── index.html ├── index.js ├── label │ ├── bg2.jpeg │ ├── delete.png │ ├── index.html │ ├── libai.jpeg │ └── zhangliang.jpeg ├── marker.png └── mask_min.png ├── doc ├── .gitignore ├── .npmrc ├── index.md ├── node_modules_rewrite │ └── i5ting_toc │ │ ├── index.js │ │ └── vendor │ │ └── template.html ├── package.json ├── preview │ ├── index.html │ ├── toc │ │ ├── css │ │ │ ├── demo.css │ │ │ └── zTreeStyle │ │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ │ └── zTreeStyle.css │ │ ├── js │ │ │ ├── jquery-1.4.4.min.js │ │ │ ├── jquery.ztree.all-3.5.min.js │ │ │ ├── ztree_toc.js │ │ │ └── ztree_toc.min.js │ │ └── style │ │ │ ├── Clearness Dark.css │ │ │ ├── Clearness.css │ │ │ ├── GitHub.css │ │ │ ├── GitHub2.css │ │ │ ├── github-bf51422f4bb36427d391e4b75a1daa083c2d840e.css │ │ │ ├── github2-d731afd4f624c99a4b19ad69f3083cd6d02b81d5.css │ │ │ └── makedownpad.css │ └── toc_conf.js └── rewrite-pkg-patch.js ├── index.html ├── libs ├── control │ ├── gControl.ts │ ├── gControlGrid.ts │ ├── gControlScale.ts │ ├── gEnum.ts │ ├── gInterface.ts │ └── main.ts ├── feature │ ├── gEnum.ts │ ├── gFeature.ts │ ├── gFeatureArrow.ts │ ├── gFeatureCircle.ts │ ├── gFeatureLine.ts │ ├── gFeaturePoint.ts │ ├── gFeaturePolygon.ts │ ├── gFeaturePolyline.ts │ ├── gFeatureRect.ts │ ├── gInterface.ts │ └── main.ts ├── gEnum.ts ├── gGraphic.ts ├── gInterface.ts ├── gMap.ts ├── gQTree.ts ├── gUtil.ts ├── layer │ ├── gEnum.ts │ ├── gInterface.ts │ ├── gLayer.ts │ ├── gLayerCanvas.ts │ ├── gLayerEvent.ts │ ├── gLayerExportHelper.ts │ ├── gLayerFeature.ts │ ├── gLayerImage.ts │ ├── gLayerMarker.ts │ ├── gLayerMask.ts │ ├── gLayerMaskHelper.ts │ ├── gLayerOverlay.ts │ ├── gLayerSupport.ts │ ├── gLayerText.ts │ └── main.ts ├── main.ts ├── marker │ ├── gEnum.ts │ ├── gInterface.ts │ ├── gMarker.ts │ └── main.ts ├── mask │ ├── gAction.ts │ ├── gActionClear.ts │ ├── gActionDraw.ts │ ├── gActionImage.ts │ ├── gEnum.ts │ ├── gInterface.ts │ └── main.ts └── text │ ├── gEnum.ts │ ├── gInterface.ts │ ├── gText.ts │ └── main.ts ├── old_version_docs ├── README.md ├── _navbar.md ├── _sidebar.md ├── files │ ├── mask.gif │ ├── point.gif │ ├── polygon.gif │ ├── polyline.gif │ └── rect.gif ├── index.html ├── static │ ├── css │ │ └── index.css │ ├── docsify │ │ ├── docsify.min.js │ │ └── vue.css │ └── imgs │ │ └── bg.png └── texts │ └── abstract.md ├── package.json ├── rollup.config.js └── website ├── .gitignore ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── modules.js ├── paths.js ├── pnpTs.js ├── webpack.config.js └── webpackDevServer.config.js ├── jsconfig.json ├── mock ├── config.js ├── data │ └── gaokaoQuery.json └── mock.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── scripts ├── build.js ├── start.js └── test.js └── src ├── antd.reset.less ├── app ├── common │ ├── common.js │ └── hooks │ │ ├── useFeatureStyle.ts │ │ └── useFeaturesFormatForTable.ts ├── components │ ├── Footer │ │ ├── index.js │ │ └── index.less │ └── Header │ │ ├── index.js │ │ └── index.less ├── config │ ├── api.js │ ├── constants.js │ └── routes.js ├── hooks │ ├── index.js │ └── useRequest.js ├── page │ ├── Demo │ │ ├── index.js │ │ ├── index.less │ │ └── index.test.js │ ├── Doc │ │ ├── doc.md │ │ ├── index.js │ │ └── index.less │ ├── Error │ │ ├── index.css │ │ └── index.js │ ├── Home │ │ ├── index.js │ │ └── index.less │ └── Login │ │ ├── index.css │ │ └── index.js └── reducer │ ├── index.js │ └── user.js ├── dist ├── ailabel.umd.js └── index.js ├── index.js ├── index.less ├── serviceWorker.js └── setupProxy.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/README.md -------------------------------------------------------------------------------- /demo/bg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/bg.webp -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/label/bg2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/label/bg2.jpeg -------------------------------------------------------------------------------- /demo/label/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/label/delete.png -------------------------------------------------------------------------------- /demo/label/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/label/index.html -------------------------------------------------------------------------------- /demo/label/libai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/label/libai.jpeg -------------------------------------------------------------------------------- /demo/label/zhangliang.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/label/zhangliang.jpeg -------------------------------------------------------------------------------- /demo/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/marker.png -------------------------------------------------------------------------------- /demo/mask_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/demo/mask_min.png -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/.npmrc -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/node_modules_rewrite/i5ting_toc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/node_modules_rewrite/i5ting_toc/index.js -------------------------------------------------------------------------------- /doc/node_modules_rewrite/i5ting_toc/vendor/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/node_modules_rewrite/i5ting_toc/vendor/template.html -------------------------------------------------------------------------------- /doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/package.json -------------------------------------------------------------------------------- /doc/preview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/index.html -------------------------------------------------------------------------------- /doc/preview/toc/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/demo.css -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /doc/preview/toc/css/zTreeStyle/zTreeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/css/zTreeStyle/zTreeStyle.css -------------------------------------------------------------------------------- /doc/preview/toc/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /doc/preview/toc/js/jquery.ztree.all-3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/js/jquery.ztree.all-3.5.min.js -------------------------------------------------------------------------------- /doc/preview/toc/js/ztree_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/js/ztree_toc.js -------------------------------------------------------------------------------- /doc/preview/toc/js/ztree_toc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/js/ztree_toc.min.js -------------------------------------------------------------------------------- /doc/preview/toc/style/Clearness Dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/Clearness Dark.css -------------------------------------------------------------------------------- /doc/preview/toc/style/Clearness.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/Clearness.css -------------------------------------------------------------------------------- /doc/preview/toc/style/GitHub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/GitHub.css -------------------------------------------------------------------------------- /doc/preview/toc/style/GitHub2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/GitHub2.css -------------------------------------------------------------------------------- /doc/preview/toc/style/github-bf51422f4bb36427d391e4b75a1daa083c2d840e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/github-bf51422f4bb36427d391e4b75a1daa083c2d840e.css -------------------------------------------------------------------------------- /doc/preview/toc/style/github2-d731afd4f624c99a4b19ad69f3083cd6d02b81d5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/github2-d731afd4f624c99a4b19ad69f3083cd6d02b81d5.css -------------------------------------------------------------------------------- /doc/preview/toc/style/makedownpad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc/style/makedownpad.css -------------------------------------------------------------------------------- /doc/preview/toc_conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/preview/toc_conf.js -------------------------------------------------------------------------------- /doc/rewrite-pkg-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/doc/rewrite-pkg-patch.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/index.html -------------------------------------------------------------------------------- /libs/control/gControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/gControl.ts -------------------------------------------------------------------------------- /libs/control/gControlGrid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/gControlGrid.ts -------------------------------------------------------------------------------- /libs/control/gControlScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/gControlScale.ts -------------------------------------------------------------------------------- /libs/control/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/gEnum.ts -------------------------------------------------------------------------------- /libs/control/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/gInterface.ts -------------------------------------------------------------------------------- /libs/control/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/control/main.ts -------------------------------------------------------------------------------- /libs/feature/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gEnum.ts -------------------------------------------------------------------------------- /libs/feature/gFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeature.ts -------------------------------------------------------------------------------- /libs/feature/gFeatureArrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeatureArrow.ts -------------------------------------------------------------------------------- /libs/feature/gFeatureCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeatureCircle.ts -------------------------------------------------------------------------------- /libs/feature/gFeatureLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeatureLine.ts -------------------------------------------------------------------------------- /libs/feature/gFeaturePoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeaturePoint.ts -------------------------------------------------------------------------------- /libs/feature/gFeaturePolygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeaturePolygon.ts -------------------------------------------------------------------------------- /libs/feature/gFeaturePolyline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeaturePolyline.ts -------------------------------------------------------------------------------- /libs/feature/gFeatureRect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gFeatureRect.ts -------------------------------------------------------------------------------- /libs/feature/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/gInterface.ts -------------------------------------------------------------------------------- /libs/feature/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/feature/main.ts -------------------------------------------------------------------------------- /libs/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gEnum.ts -------------------------------------------------------------------------------- /libs/gGraphic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gGraphic.ts -------------------------------------------------------------------------------- /libs/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gInterface.ts -------------------------------------------------------------------------------- /libs/gMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gMap.ts -------------------------------------------------------------------------------- /libs/gQTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gQTree.ts -------------------------------------------------------------------------------- /libs/gUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/gUtil.ts -------------------------------------------------------------------------------- /libs/layer/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gEnum.ts -------------------------------------------------------------------------------- /libs/layer/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gInterface.ts -------------------------------------------------------------------------------- /libs/layer/gLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayer.ts -------------------------------------------------------------------------------- /libs/layer/gLayerCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerCanvas.ts -------------------------------------------------------------------------------- /libs/layer/gLayerEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerEvent.ts -------------------------------------------------------------------------------- /libs/layer/gLayerExportHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerExportHelper.ts -------------------------------------------------------------------------------- /libs/layer/gLayerFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerFeature.ts -------------------------------------------------------------------------------- /libs/layer/gLayerImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerImage.ts -------------------------------------------------------------------------------- /libs/layer/gLayerMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerMarker.ts -------------------------------------------------------------------------------- /libs/layer/gLayerMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerMask.ts -------------------------------------------------------------------------------- /libs/layer/gLayerMaskHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerMaskHelper.ts -------------------------------------------------------------------------------- /libs/layer/gLayerOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerOverlay.ts -------------------------------------------------------------------------------- /libs/layer/gLayerSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerSupport.ts -------------------------------------------------------------------------------- /libs/layer/gLayerText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/gLayerText.ts -------------------------------------------------------------------------------- /libs/layer/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/layer/main.ts -------------------------------------------------------------------------------- /libs/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/main.ts -------------------------------------------------------------------------------- /libs/marker/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/marker/gEnum.ts -------------------------------------------------------------------------------- /libs/marker/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/marker/gInterface.ts -------------------------------------------------------------------------------- /libs/marker/gMarker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/marker/gMarker.ts -------------------------------------------------------------------------------- /libs/marker/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/marker/main.ts -------------------------------------------------------------------------------- /libs/mask/gAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gAction.ts -------------------------------------------------------------------------------- /libs/mask/gActionClear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gActionClear.ts -------------------------------------------------------------------------------- /libs/mask/gActionDraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gActionDraw.ts -------------------------------------------------------------------------------- /libs/mask/gActionImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gActionImage.ts -------------------------------------------------------------------------------- /libs/mask/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gEnum.ts -------------------------------------------------------------------------------- /libs/mask/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/gInterface.ts -------------------------------------------------------------------------------- /libs/mask/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/mask/main.ts -------------------------------------------------------------------------------- /libs/text/gEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/text/gEnum.ts -------------------------------------------------------------------------------- /libs/text/gInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/text/gInterface.ts -------------------------------------------------------------------------------- /libs/text/gText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/text/gText.ts -------------------------------------------------------------------------------- /libs/text/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/libs/text/main.ts -------------------------------------------------------------------------------- /old_version_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/README.md -------------------------------------------------------------------------------- /old_version_docs/_navbar.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /old_version_docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/_sidebar.md -------------------------------------------------------------------------------- /old_version_docs/files/mask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/files/mask.gif -------------------------------------------------------------------------------- /old_version_docs/files/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/files/point.gif -------------------------------------------------------------------------------- /old_version_docs/files/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/files/polygon.gif -------------------------------------------------------------------------------- /old_version_docs/files/polyline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/files/polyline.gif -------------------------------------------------------------------------------- /old_version_docs/files/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/files/rect.gif -------------------------------------------------------------------------------- /old_version_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/index.html -------------------------------------------------------------------------------- /old_version_docs/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/static/css/index.css -------------------------------------------------------------------------------- /old_version_docs/static/docsify/docsify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/static/docsify/docsify.min.js -------------------------------------------------------------------------------- /old_version_docs/static/docsify/vue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/static/docsify/vue.css -------------------------------------------------------------------------------- /old_version_docs/static/imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/static/imgs/bg.png -------------------------------------------------------------------------------- /old_version_docs/texts/abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/old_version_docs/texts/abstract.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/rollup.config.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/README.md -------------------------------------------------------------------------------- /website/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/env.js -------------------------------------------------------------------------------- /website/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/jest/cssTransform.js -------------------------------------------------------------------------------- /website/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/jest/fileTransform.js -------------------------------------------------------------------------------- /website/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/modules.js -------------------------------------------------------------------------------- /website/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/paths.js -------------------------------------------------------------------------------- /website/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/pnpTs.js -------------------------------------------------------------------------------- /website/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/webpack.config.js -------------------------------------------------------------------------------- /website/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /website/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/jsconfig.json -------------------------------------------------------------------------------- /website/mock/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/mock/config.js -------------------------------------------------------------------------------- /website/mock/data/gaokaoQuery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/mock/data/gaokaoQuery.json -------------------------------------------------------------------------------- /website/mock/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/mock/mock.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/package.json -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/index.html -------------------------------------------------------------------------------- /website/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/logo192.png -------------------------------------------------------------------------------- /website/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/logo512.png -------------------------------------------------------------------------------- /website/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/manifest.json -------------------------------------------------------------------------------- /website/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/public/robots.txt -------------------------------------------------------------------------------- /website/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/scripts/build.js -------------------------------------------------------------------------------- /website/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/scripts/start.js -------------------------------------------------------------------------------- /website/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/scripts/test.js -------------------------------------------------------------------------------- /website/src/antd.reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/antd.reset.less -------------------------------------------------------------------------------- /website/src/app/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/common/common.js -------------------------------------------------------------------------------- /website/src/app/common/hooks/useFeatureStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/common/hooks/useFeatureStyle.ts -------------------------------------------------------------------------------- /website/src/app/common/hooks/useFeaturesFormatForTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/common/hooks/useFeaturesFormatForTable.ts -------------------------------------------------------------------------------- /website/src/app/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/components/Footer/index.js -------------------------------------------------------------------------------- /website/src/app/components/Footer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/components/Footer/index.less -------------------------------------------------------------------------------- /website/src/app/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/components/Header/index.js -------------------------------------------------------------------------------- /website/src/app/components/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/components/Header/index.less -------------------------------------------------------------------------------- /website/src/app/config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/config/api.js -------------------------------------------------------------------------------- /website/src/app/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/config/constants.js -------------------------------------------------------------------------------- /website/src/app/config/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/config/routes.js -------------------------------------------------------------------------------- /website/src/app/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/hooks/index.js -------------------------------------------------------------------------------- /website/src/app/hooks/useRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/hooks/useRequest.js -------------------------------------------------------------------------------- /website/src/app/page/Demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Demo/index.js -------------------------------------------------------------------------------- /website/src/app/page/Demo/index.less: -------------------------------------------------------------------------------- 1 | .page-demo { 2 | 3 | } -------------------------------------------------------------------------------- /website/src/app/page/Demo/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Demo/index.test.js -------------------------------------------------------------------------------- /website/src/app/page/Doc/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Doc/doc.md -------------------------------------------------------------------------------- /website/src/app/page/Doc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Doc/index.js -------------------------------------------------------------------------------- /website/src/app/page/Doc/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Doc/index.less -------------------------------------------------------------------------------- /website/src/app/page/Error/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/src/app/page/Error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Error/index.js -------------------------------------------------------------------------------- /website/src/app/page/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Home/index.js -------------------------------------------------------------------------------- /website/src/app/page/Home/index.less: -------------------------------------------------------------------------------- 1 | .home-wrap { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /website/src/app/page/Login/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/src/app/page/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/page/Login/index.js -------------------------------------------------------------------------------- /website/src/app/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/reducer/index.js -------------------------------------------------------------------------------- /website/src/app/reducer/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/app/reducer/user.js -------------------------------------------------------------------------------- /website/src/dist/ailabel.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/dist/ailabel.umd.js -------------------------------------------------------------------------------- /website/src/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/dist/index.js -------------------------------------------------------------------------------- /website/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/index.js -------------------------------------------------------------------------------- /website/src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/index.less -------------------------------------------------------------------------------- /website/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/serviceWorker.js -------------------------------------------------------------------------------- /website/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luchuanqi/AILabel/HEAD/website/src/setupProxy.js --------------------------------------------------------------------------------