├── .eslintignore ├── .eslintrc.json ├── .firebaserc ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE.md ├── README.md ├── firebase.json ├── icon └── favicon-512.png ├── package.json ├── public └── favicon.ico ├── scripts └── build.ts ├── src ├── editor-module │ ├── application │ │ ├── app-context.tsx │ │ └── const.ts │ ├── components │ │ ├── base.tsx │ │ ├── dialogs │ │ │ └── fl-dialog.tsx │ │ ├── draggable-popover.tsx │ │ ├── fields │ │ │ ├── fl-color-field.tsx │ │ │ ├── fl-file-field.tsx │ │ │ ├── fl-folder-contents-field.tsx │ │ │ ├── fl-select-field.tsx │ │ │ ├── fl-text-field.tsx │ │ │ ├── form-util.ts │ │ │ └── type.ts │ │ ├── frame-bar │ │ │ ├── frame-bar-button.tsx │ │ │ └── frame-bar.tsx │ │ ├── style-const.ts │ │ ├── tool-bar-button.tsx │ │ └── tool-bar.tsx │ ├── config │ │ └── mui-theme.tsx │ ├── locales │ │ ├── en.json │ │ └── ja.json │ ├── repositories │ │ └── project-repository.ts │ ├── stores │ │ ├── annotation-class-store.ts │ │ ├── camera-calibration-store.ts │ │ └── task-store.ts │ ├── types │ │ ├── const.ts │ │ ├── labos.ts │ │ └── vo.ts │ ├── utils │ │ ├── annotation-class-util.ts │ │ ├── calibration-util.ts │ │ ├── color-util.ts │ │ ├── fl-cube-util.ts │ │ ├── fl-object-camera-util.ts │ │ ├── format-util.ts │ │ ├── interpolation-util.ts │ │ ├── math-util.ts │ │ ├── pcd-util.ts │ │ ├── task-annotation-util.ts │ │ ├── view-util.ts │ │ └── workspace-util.ts │ └── views │ │ ├── annotation-classes │ │ ├── class-list.tsx │ │ └── instance-list.tsx │ │ ├── pages │ │ └── three-annotation │ │ │ ├── base-view-index.tsx │ │ │ ├── calibration-edit-dialog.tsx │ │ │ ├── class-form-dialog.tsx │ │ │ ├── class-list-dialog.tsx │ │ │ ├── hot-key.tsx │ │ │ ├── image-dialog.tsx │ │ │ ├── index.tsx │ │ │ ├── label-side-panel.tsx │ │ │ ├── label-tool-bar.tsx │ │ │ ├── label-view-index.tsx │ │ │ ├── side-panel.tsx │ │ │ └── tool-bar.tsx │ │ └── task-three │ │ ├── drei-html.tsx │ │ ├── fl-annotation-controls.tsx │ │ ├── fl-const.ts │ │ ├── fl-cube-model.ts │ │ ├── fl-cube.tsx │ │ ├── fl-cubes.tsx │ │ ├── fl-label-main-view.tsx │ │ ├── fl-label-secondary-view.tsx │ │ ├── fl-main-camera-controls.ts │ │ ├── fl-main-controls.tsx │ │ ├── fl-object-camera-controls.ts │ │ ├── fl-object-controls.tsx │ │ ├── fl-pcd-points.ts │ │ ├── fl-pcd.tsx │ │ ├── fl-three-editor.tsx │ │ ├── fl-transform-controls-gizmo.ts │ │ └── fl-transform-controls.ts ├── electron-app │ ├── @types │ │ ├── global.d.ts │ │ └── import-png.d.ts │ ├── main.ts │ ├── node │ │ ├── file-driver.ts │ │ └── workspace.ts │ ├── preload.ts │ └── web │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── asset │ │ └── favicon-200.png │ │ ├── context │ │ └── workspace.ts │ │ ├── index.html │ │ ├── index.scss │ │ ├── index.tsx │ │ ├── locales │ │ ├── en.json │ │ └── ja.json │ │ ├── repositories │ │ └── project-fs-repository.ts │ │ ├── title-bar.tsx │ │ └── views │ │ └── pages │ │ ├── start │ │ └── index.tsx │ │ └── workspace │ │ ├── form.tsx │ │ └── index.tsx ├── file-module │ └── reference-target-util.ts └── web-app │ ├── App.scss │ ├── App.tsx │ ├── images │ ├── autoware-main-logo-whitebg.png │ ├── copy.png │ ├── feature__2d3d.png │ ├── feature__birdeye.png │ ├── feature__label_view.png │ ├── feature__sequence_interpolation.png │ ├── github.png │ ├── hero.png │ ├── logo.png │ ├── pcd.png │ ├── pcd_frames.png │ ├── pcd_image.png │ ├── side-left.png │ └── side-right.png │ ├── index.html │ ├── index.scss │ ├── index.tsx │ ├── locales │ ├── en.json │ └── ja.json │ ├── repositories │ └── project-web-repository.ts │ ├── title-bar.tsx │ └── views │ └── pages │ ├── edit │ ├── form.tsx │ └── index.tsx │ ├── new │ ├── form.tsx │ └── index.tsx │ └── start │ ├── github-icon.tsx │ └── index.tsx ├── tsconfig.json ├── tsconfig.main.json ├── webpack.config.prod.ts ├── webpack.config.ts ├── webpack.config.web-dev.ts ├── webpack.config.web-prod.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/firebase.json -------------------------------------------------------------------------------- /icon/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/icon/favicon-512.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /src/editor-module/application/app-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/application/app-context.tsx -------------------------------------------------------------------------------- /src/editor-module/application/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/application/const.ts -------------------------------------------------------------------------------- /src/editor-module/components/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/base.tsx -------------------------------------------------------------------------------- /src/editor-module/components/dialogs/fl-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/dialogs/fl-dialog.tsx -------------------------------------------------------------------------------- /src/editor-module/components/draggable-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/draggable-popover.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/fl-color-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/fl-color-field.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/fl-file-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/fl-file-field.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/fl-folder-contents-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/fl-folder-contents-field.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/fl-select-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/fl-select-field.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/fl-text-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/fl-text-field.tsx -------------------------------------------------------------------------------- /src/editor-module/components/fields/form-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/form-util.ts -------------------------------------------------------------------------------- /src/editor-module/components/fields/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/fields/type.ts -------------------------------------------------------------------------------- /src/editor-module/components/frame-bar/frame-bar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/frame-bar/frame-bar-button.tsx -------------------------------------------------------------------------------- /src/editor-module/components/frame-bar/frame-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/frame-bar/frame-bar.tsx -------------------------------------------------------------------------------- /src/editor-module/components/style-const.ts: -------------------------------------------------------------------------------- 1 | export const TASK_SIDEBAR_WIDTH = 350; 2 | -------------------------------------------------------------------------------- /src/editor-module/components/tool-bar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/tool-bar-button.tsx -------------------------------------------------------------------------------- /src/editor-module/components/tool-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/components/tool-bar.tsx -------------------------------------------------------------------------------- /src/editor-module/config/mui-theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/config/mui-theme.tsx -------------------------------------------------------------------------------- /src/editor-module/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/locales/en.json -------------------------------------------------------------------------------- /src/editor-module/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/locales/ja.json -------------------------------------------------------------------------------- /src/editor-module/repositories/project-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/repositories/project-repository.ts -------------------------------------------------------------------------------- /src/editor-module/stores/annotation-class-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/stores/annotation-class-store.ts -------------------------------------------------------------------------------- /src/editor-module/stores/camera-calibration-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/stores/camera-calibration-store.ts -------------------------------------------------------------------------------- /src/editor-module/stores/task-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/stores/task-store.ts -------------------------------------------------------------------------------- /src/editor-module/types/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/types/const.ts -------------------------------------------------------------------------------- /src/editor-module/types/labos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/types/labos.ts -------------------------------------------------------------------------------- /src/editor-module/types/vo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/types/vo.ts -------------------------------------------------------------------------------- /src/editor-module/utils/annotation-class-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/annotation-class-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/calibration-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/calibration-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/color-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/color-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/fl-cube-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/fl-cube-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/fl-object-camera-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/fl-object-camera-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/format-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/format-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/interpolation-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/interpolation-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/math-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/math-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/pcd-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/pcd-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/task-annotation-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/task-annotation-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/view-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/view-util.ts -------------------------------------------------------------------------------- /src/editor-module/utils/workspace-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/utils/workspace-util.ts -------------------------------------------------------------------------------- /src/editor-module/views/annotation-classes/class-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/annotation-classes/class-list.tsx -------------------------------------------------------------------------------- /src/editor-module/views/annotation-classes/instance-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/annotation-classes/instance-list.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/base-view-index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/base-view-index.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/calibration-edit-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/calibration-edit-dialog.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/class-form-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/class-form-dialog.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/class-list-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/class-list-dialog.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/hot-key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/hot-key.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/image-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/image-dialog.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/index.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/label-side-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/label-side-panel.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/label-tool-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/label-tool-bar.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/label-view-index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/label-view-index.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/side-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/side-panel.tsx -------------------------------------------------------------------------------- /src/editor-module/views/pages/three-annotation/tool-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/pages/three-annotation/tool-bar.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/drei-html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/drei-html.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-annotation-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-annotation-controls.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-const.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-cube-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-cube-model.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-cube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-cube.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-cubes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-cubes.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-label-main-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-label-main-view.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-label-secondary-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-label-secondary-view.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-main-camera-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-main-camera-controls.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-main-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-main-controls.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-object-camera-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-object-camera-controls.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-object-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-object-controls.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-pcd-points.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-pcd-points.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-pcd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-pcd.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-three-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-three-editor.tsx -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-transform-controls-gizmo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-transform-controls-gizmo.ts -------------------------------------------------------------------------------- /src/editor-module/views/task-three/fl-transform-controls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/editor-module/views/task-three/fl-transform-controls.ts -------------------------------------------------------------------------------- /src/electron-app/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/@types/global.d.ts -------------------------------------------------------------------------------- /src/electron-app/@types/import-png.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /src/electron-app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/main.ts -------------------------------------------------------------------------------- /src/electron-app/node/file-driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/node/file-driver.ts -------------------------------------------------------------------------------- /src/electron-app/node/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/node/workspace.ts -------------------------------------------------------------------------------- /src/electron-app/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/preload.ts -------------------------------------------------------------------------------- /src/electron-app/web/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/App.scss -------------------------------------------------------------------------------- /src/electron-app/web/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/App.tsx -------------------------------------------------------------------------------- /src/electron-app/web/asset/favicon-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/asset/favicon-200.png -------------------------------------------------------------------------------- /src/electron-app/web/context/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/context/workspace.ts -------------------------------------------------------------------------------- /src/electron-app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/index.html -------------------------------------------------------------------------------- /src/electron-app/web/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/index.scss -------------------------------------------------------------------------------- /src/electron-app/web/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/index.tsx -------------------------------------------------------------------------------- /src/electron-app/web/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/locales/en.json -------------------------------------------------------------------------------- /src/electron-app/web/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/locales/ja.json -------------------------------------------------------------------------------- /src/electron-app/web/repositories/project-fs-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/repositories/project-fs-repository.ts -------------------------------------------------------------------------------- /src/electron-app/web/title-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/title-bar.tsx -------------------------------------------------------------------------------- /src/electron-app/web/views/pages/start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/views/pages/start/index.tsx -------------------------------------------------------------------------------- /src/electron-app/web/views/pages/workspace/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/views/pages/workspace/form.tsx -------------------------------------------------------------------------------- /src/electron-app/web/views/pages/workspace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/electron-app/web/views/pages/workspace/index.tsx -------------------------------------------------------------------------------- /src/file-module/reference-target-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/file-module/reference-target-util.ts -------------------------------------------------------------------------------- /src/web-app/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/App.scss -------------------------------------------------------------------------------- /src/web-app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/App.tsx -------------------------------------------------------------------------------- /src/web-app/images/autoware-main-logo-whitebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/autoware-main-logo-whitebg.png -------------------------------------------------------------------------------- /src/web-app/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/copy.png -------------------------------------------------------------------------------- /src/web-app/images/feature__2d3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/feature__2d3d.png -------------------------------------------------------------------------------- /src/web-app/images/feature__birdeye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/feature__birdeye.png -------------------------------------------------------------------------------- /src/web-app/images/feature__label_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/feature__label_view.png -------------------------------------------------------------------------------- /src/web-app/images/feature__sequence_interpolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/feature__sequence_interpolation.png -------------------------------------------------------------------------------- /src/web-app/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/github.png -------------------------------------------------------------------------------- /src/web-app/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/hero.png -------------------------------------------------------------------------------- /src/web-app/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/logo.png -------------------------------------------------------------------------------- /src/web-app/images/pcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/pcd.png -------------------------------------------------------------------------------- /src/web-app/images/pcd_frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/pcd_frames.png -------------------------------------------------------------------------------- /src/web-app/images/pcd_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/pcd_image.png -------------------------------------------------------------------------------- /src/web-app/images/side-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/side-left.png -------------------------------------------------------------------------------- /src/web-app/images/side-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/images/side-right.png -------------------------------------------------------------------------------- /src/web-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/index.html -------------------------------------------------------------------------------- /src/web-app/index.scss: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: 'Roboto', sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /src/web-app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/index.tsx -------------------------------------------------------------------------------- /src/web-app/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/locales/en.json -------------------------------------------------------------------------------- /src/web-app/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/locales/ja.json -------------------------------------------------------------------------------- /src/web-app/repositories/project-web-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/repositories/project-web-repository.ts -------------------------------------------------------------------------------- /src/web-app/title-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/title-bar.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/edit/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/edit/form.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/edit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/edit/index.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/new/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/new/form.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/new/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/new/index.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/start/github-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/start/github-icon.tsx -------------------------------------------------------------------------------- /src/web-app/views/pages/start/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/src/web-app/views/pages/start/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/tsconfig.main.json -------------------------------------------------------------------------------- /webpack.config.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/webpack.config.prod.ts -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/webpack.config.ts -------------------------------------------------------------------------------- /webpack.config.web-dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/webpack.config.web-dev.ts -------------------------------------------------------------------------------- /webpack.config.web-prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/webpack.config.web-prod.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastlabel/AutomanTools/HEAD/yarn.lock --------------------------------------------------------------------------------