├── LICENSE ├── README.md ├── backend-code ├── .dockerignore ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── app.py ├── blueprints │ ├── __init__.py │ ├── auth_bp.py │ ├── detect_bp.py │ ├── detect_demo_bp.py │ ├── froms │ │ ├── login_form.py │ │ └── register_form.py │ ├── server_bp.py │ ├── table_bp.py │ └── user_manage_bp.py ├── classify │ ├── predict.py │ ├── train.py │ └── val.py ├── config.py ├── data │ ├── Argoverse.yaml │ ├── Garbage.yaml │ ├── GlobalWheat2020.yaml │ ├── ImageNet.yaml │ ├── Objects365.yaml │ ├── SKU-110K.yaml │ ├── Sample.yaml │ ├── TACO-4-classes.yaml │ ├── TACO.yaml │ ├── VOC.yaml │ ├── VisDrone.yaml │ ├── coco.yaml │ ├── coco128.yaml │ ├── data.yaml │ ├── demo.yaml │ ├── hyps │ │ ├── hyp.Objects365.yaml │ │ ├── hyp.VOC.yaml │ │ ├── hyp.scratch-high.yaml │ │ ├── hyp.scratch-low.yaml │ │ └── hyp.scratch-med.yaml │ ├── images │ │ ├── test0.jpg │ │ └── test1.jpg │ ├── scripts │ │ ├── download_weights.sh │ │ ├── get_coco.sh │ │ ├── get_coco128.sh │ │ └── get_imagenet.sh │ └── xView.yaml ├── database_models.py ├── dataset │ └── testset │ │ └── test5.jpg ├── detect.py ├── export.py ├── extensions.py ├── hubconf.py ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ └── 6475298b24f3_.py ├── models │ ├── common.py │ ├── experimental.py │ ├── hub │ │ ├── anchors.yaml │ │ ├── yolov3-spp.yaml │ │ ├── yolov3-tiny.yaml │ │ ├── yolov3.yaml │ │ ├── yolov5-bifpn.yaml │ │ ├── yolov5-fpn.yaml │ │ ├── yolov5-p2.yaml │ │ ├── yolov5-p34.yaml │ │ ├── yolov5-p6.yaml │ │ ├── yolov5-p7.yaml │ │ ├── yolov5-panet.yaml │ │ ├── yolov5l6.yaml │ │ ├── yolov5m6.yaml │ │ ├── yolov5n6.yaml │ │ ├── yolov5s-ghost.yaml │ │ ├── yolov5s-transformer.yaml │ │ ├── yolov5s6.yaml │ │ └── yolov5x6.yaml │ ├── tf.py │ ├── yolo.py │ ├── yolov5l-demo.yaml │ ├── yolov5l.yaml │ ├── yolov5m-demo.yaml │ ├── yolov5m.yaml │ ├── yolov5n-demo.yaml │ ├── yolov5n.yaml │ ├── yolov5s-demo.yaml │ ├── yolov5s.yaml │ ├── yolov5x-demo.yaml │ └── yolov5x.yaml ├── requirements.txt ├── sql │ ├── data.sql │ └── data1.sql ├── static │ ├── pytorch.png │ └── style.css ├── templates │ └── index.html ├── train.py ├── train_utils │ ├── makeTxt_2.0.py │ ├── testTorchEnv.py │ └── voc_label_2.0.py ├── utils │ ├── __init__.py │ ├── activations.py │ ├── augmentations.py │ ├── autoanchor.py │ ├── autobatch.py │ ├── aws │ │ ├── __init__.py │ │ ├── mime.sh │ │ ├── resume.py │ │ └── userdata.sh │ ├── backend_utils │ │ ├── batch_add_user.py │ │ ├── colorprinter.py │ │ ├── dir_utils.py │ │ ├── email_utils.py │ │ ├── init_database.py │ │ ├── model_handler.py │ │ ├── response_utils.py │ │ └── weights_init.py │ ├── benchmarks.py │ ├── callbacks.py │ ├── dataloaders.py │ ├── docker │ │ ├── Dockerfile │ │ ├── Dockerfile-arm64 │ │ └── Dockerfile-cpu │ ├── downloads.py │ ├── flask_rest_api │ │ ├── README.md │ │ ├── example_request.py │ │ └── restapi.py │ ├── general.py │ ├── google_app_engine │ │ ├── Dockerfile │ │ ├── additional_requirements.txt │ │ └── app.yaml │ ├── loggers │ │ ├── __init__.py │ │ ├── clearml │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── clearml_utils.py │ │ │ └── hpo.py │ │ └── wandb │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── log_dataset.py │ │ │ ├── sweep.py │ │ │ ├── sweep.yaml │ │ │ └── wandb_utils.py │ ├── loss.py │ ├── metrics.py │ ├── plots.py │ └── torch_utils.py ├── val.py ├── weights │ ├── yolov5-3.1 │ │ ├── Garbage_yolov5s_300_epochs.pt │ │ └── TACO_yolov5s_300_epochs.pt │ ├── yolov5-6.2 │ │ └── Sample_yolov5s6_300_epochs.pt │ ├── yolov5-7.0 │ │ └── COCO_yolov5s6.pt │ └── yolov5s.pt └── yolov5s.pt ├── frontend-code ├── .editorconfig ├── .env.development ├── .env.production ├── .env.staging ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky │ └── pre-commit ├── .prettierignore ├── .vscode │ ├── extensions.json │ ├── hook.code-snippets │ ├── settings.json │ └── vue.code-snippets ├── LICENSE ├── index.html ├── package.json ├── pnpm-lock.yaml ├── prettier.config.js ├── public │ ├── app-loading.css │ ├── fav.ico │ ├── fav.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon_backup.ico │ └── images │ │ ├── car.png │ │ └── jg.png ├── src │ ├── App.vue │ ├── api │ │ ├── detect │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── detect.ts │ │ ├── hook-demo │ │ │ ├── use-fetch-select.ts │ │ │ └── use-fullscreen-loading.ts │ │ ├── login │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── login.ts │ │ ├── register │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── register.ts │ │ ├── switch-role │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── switch_role.ts │ │ ├── table │ │ │ ├── index.ts │ │ │ └── types │ │ │ │ └── table.ts │ │ └── user-manage │ │ │ ├── index.ts │ │ │ └── types │ │ │ └── user-manage.ts │ ├── assets │ │ ├── LOGO.png │ │ ├── docs │ │ │ ├── preview1.png │ │ │ ├── preview2.png │ │ │ └── preview3.png │ │ ├── error-page │ │ │ ├── 403.svg │ │ │ └── 404.svg │ │ └── layout │ │ │ ├── logo-text-0.png │ │ │ ├── logo-text-1.png │ │ │ ├── logo-text-1_backup.png │ │ │ ├── logo-text-2.png │ │ │ ├── logo-text-2_backup.png │ │ │ ├── logo-text-3.png │ │ │ ├── logo.png │ │ │ └── logo_backup.png │ ├── components │ │ ├── Notify │ │ │ ├── NotifyList.vue │ │ │ ├── data.ts │ │ │ ├── data_backup.ts │ │ │ └── index.vue │ │ ├── Screenfull │ │ │ └── index.vue │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── ThemeSwitch │ │ │ └── index.vue │ │ └── UploadFile │ │ │ └── index.vue │ ├── config │ │ ├── async-route.ts │ │ ├── layout.ts │ │ └── white-list.ts │ ├── constants │ │ └── cacheKey.ts │ ├── directives │ │ ├── index.ts │ │ └── permission │ │ │ └── index.ts │ ├── hooks │ │ ├── useFetchSelect.ts │ │ ├── useFullscreenLoading.ts │ │ ├── usePagination.ts │ │ └── useTheme.ts │ ├── icons │ │ ├── index.ts │ │ └── svg │ │ │ ├── 404.svg │ │ │ ├── Avatar.svg │ │ │ ├── UploadFilled.svg │ │ │ ├── bug.svg │ │ │ ├── component.svg │ │ │ ├── dashboard.svg │ │ │ ├── fullscreen-exit.svg │ │ │ ├── fullscreen.svg │ │ │ ├── helpFilled.svg │ │ │ ├── link.svg │ │ │ ├── lock.svg │ │ │ ├── menu.svg │ │ │ └── unocss.svg │ ├── layout │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Breadcrumb │ │ │ │ └── index.vue │ │ │ ├── Hamburger │ │ │ │ └── index.vue │ │ │ ├── NavigationBar │ │ │ │ └── index.vue │ │ │ ├── RightPanel │ │ │ │ └── index.vue │ │ │ ├── Settings │ │ │ │ └── index.vue │ │ │ ├── Sidebar │ │ │ │ ├── SidebarItem.vue │ │ │ │ ├── SidebarItemLink.vue │ │ │ │ ├── SidebarLogo.vue │ │ │ │ └── index.vue │ │ │ ├── TagsView │ │ │ │ ├── ScrollPane.vue │ │ │ │ └── index.vue │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── useResize.ts │ │ └── index.vue │ ├── main.ts │ ├── plugins │ │ ├── element-plus-icon │ │ │ └── index.ts │ │ ├── element-plus │ │ │ └── index.ts │ │ ├── index.ts │ │ └── vxe-table │ │ │ └── index.ts │ ├── router │ │ ├── index.ts │ │ └── permission.ts │ ├── store │ │ ├── index.ts │ │ └── modules │ │ │ ├── app.ts │ │ │ ├── permission.ts │ │ │ ├── settings.ts │ │ │ ├── tags-view.ts │ │ │ └── user.ts │ ├── styles │ │ ├── element-plus.scss │ │ ├── index.scss │ │ ├── mixins.scss │ │ ├── theme │ │ │ ├── core │ │ │ │ ├── element-plus.scss │ │ │ │ ├── error-page.scss │ │ │ │ ├── index.scss │ │ │ │ ├── layout.scss │ │ │ │ ├── login.scss │ │ │ │ ├── other.scss │ │ │ │ └── vxe-table.scss │ │ │ ├── dark-blue │ │ │ │ ├── element-plus.css │ │ │ │ ├── index.scss │ │ │ │ └── variables.scss │ │ │ ├── dark │ │ │ │ ├── index.scss │ │ │ │ └── variables.scss │ │ │ └── register.scss │ │ ├── transition.scss │ │ ├── variables.css │ │ └── vxe-table.scss │ ├── utils │ │ ├── cache │ │ │ ├── cookies.ts │ │ │ └── localStorage.ts │ │ ├── index.ts │ │ ├── permission.ts │ │ ├── service.ts │ │ └── validate.ts │ └── views │ │ ├── dashboard │ │ ├── admin │ │ │ └── index.vue │ │ ├── editor │ │ │ └── index.vue │ │ ├── index.vue │ │ └── user │ │ │ └── index.vue │ │ ├── detect │ │ └── index.vue │ │ ├── error-page │ │ ├── 403.vue │ │ ├── 404.vue │ │ └── components │ │ │ └── ErrorPageLayout.vue │ │ ├── hook-demo │ │ ├── use-fetch-select.vue │ │ └── use-fullscreen-loading.vue │ │ ├── login │ │ └── index.vue │ │ ├── menu │ │ ├── menu1 │ │ │ ├── index.vue │ │ │ ├── menu1-1 │ │ │ │ └── index.vue │ │ │ ├── menu1-2 │ │ │ │ ├── index.vue │ │ │ │ ├── menu1-2-1 │ │ │ │ │ └── index.vue │ │ │ │ └── menu1-2-2 │ │ │ │ │ └── index.vue │ │ │ └── menu1-3 │ │ │ │ └── index.vue │ │ └── menu2 │ │ │ └── index.vue │ │ ├── permission │ │ ├── components │ │ │ └── SwitchRoles.vue │ │ ├── directive.vue │ │ └── page.vue │ │ ├── redirect │ │ └── index.vue │ │ ├── register │ │ └── index.vue │ │ ├── table │ │ ├── element-plus │ │ │ └── index.vue │ │ └── vxe-table │ │ │ ├── index.vue │ │ │ └── tsx │ │ │ ├── RoleColumnSolts.tsx │ │ │ └── StatusColumnSolts.tsx │ │ ├── unocss │ │ └── index.vue │ │ └── user-manage │ │ └── index.vue ├── tests │ ├── components │ │ └── Notify.test.ts │ ├── demo.test.ts │ └── utils │ │ └── validate.test.ts ├── tsconfig.json ├── types │ ├── api.d.ts │ ├── env.d.ts │ ├── shims-vue.d.ts │ └── vue-router.d.ts ├── unocss.config.ts └── vite.config.ts ├── img ├── image0.png ├── image1.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png └── image6.png └── sql ├── datasets.sql └── datasets1.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/README.md -------------------------------------------------------------------------------- /backend-code/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/.dockerignore -------------------------------------------------------------------------------- /backend-code/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/.gitattributes -------------------------------------------------------------------------------- /backend-code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/.gitignore -------------------------------------------------------------------------------- /backend-code/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/.pre-commit-config.yaml -------------------------------------------------------------------------------- /backend-code/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/app.py -------------------------------------------------------------------------------- /backend-code/blueprints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-code/blueprints/auth_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/auth_bp.py -------------------------------------------------------------------------------- /backend-code/blueprints/detect_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/detect_bp.py -------------------------------------------------------------------------------- /backend-code/blueprints/detect_demo_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/detect_demo_bp.py -------------------------------------------------------------------------------- /backend-code/blueprints/froms/login_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/froms/login_form.py -------------------------------------------------------------------------------- /backend-code/blueprints/froms/register_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/froms/register_form.py -------------------------------------------------------------------------------- /backend-code/blueprints/server_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/server_bp.py -------------------------------------------------------------------------------- /backend-code/blueprints/table_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/table_bp.py -------------------------------------------------------------------------------- /backend-code/blueprints/user_manage_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/blueprints/user_manage_bp.py -------------------------------------------------------------------------------- /backend-code/classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/classify/predict.py -------------------------------------------------------------------------------- /backend-code/classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/classify/train.py -------------------------------------------------------------------------------- /backend-code/classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/classify/val.py -------------------------------------------------------------------------------- /backend-code/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/config.py -------------------------------------------------------------------------------- /backend-code/data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/Argoverse.yaml -------------------------------------------------------------------------------- /backend-code/data/Garbage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/Garbage.yaml -------------------------------------------------------------------------------- /backend-code/data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /backend-code/data/ImageNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/ImageNet.yaml -------------------------------------------------------------------------------- /backend-code/data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/Objects365.yaml -------------------------------------------------------------------------------- /backend-code/data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/SKU-110K.yaml -------------------------------------------------------------------------------- /backend-code/data/Sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/Sample.yaml -------------------------------------------------------------------------------- /backend-code/data/TACO-4-classes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/TACO-4-classes.yaml -------------------------------------------------------------------------------- /backend-code/data/TACO.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/TACO.yaml -------------------------------------------------------------------------------- /backend-code/data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/VOC.yaml -------------------------------------------------------------------------------- /backend-code/data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/VisDrone.yaml -------------------------------------------------------------------------------- /backend-code/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/coco.yaml -------------------------------------------------------------------------------- /backend-code/data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/coco128.yaml -------------------------------------------------------------------------------- /backend-code/data/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/data.yaml -------------------------------------------------------------------------------- /backend-code/data/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/demo.yaml -------------------------------------------------------------------------------- /backend-code/data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /backend-code/data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /backend-code/data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /backend-code/data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /backend-code/data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /backend-code/data/images/test0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/images/test0.jpg -------------------------------------------------------------------------------- /backend-code/data/images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/images/test1.jpg -------------------------------------------------------------------------------- /backend-code/data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /backend-code/data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /backend-code/data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /backend-code/data/scripts/get_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/scripts/get_imagenet.sh -------------------------------------------------------------------------------- /backend-code/data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/data/xView.yaml -------------------------------------------------------------------------------- /backend-code/database_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/database_models.py -------------------------------------------------------------------------------- /backend-code/dataset/testset/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/dataset/testset/test5.jpg -------------------------------------------------------------------------------- /backend-code/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/detect.py -------------------------------------------------------------------------------- /backend-code/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/export.py -------------------------------------------------------------------------------- /backend-code/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/extensions.py -------------------------------------------------------------------------------- /backend-code/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/hubconf.py -------------------------------------------------------------------------------- /backend-code/migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /backend-code/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/migrations/alembic.ini -------------------------------------------------------------------------------- /backend-code/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/migrations/env.py -------------------------------------------------------------------------------- /backend-code/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/migrations/script.py.mako -------------------------------------------------------------------------------- /backend-code/migrations/versions/6475298b24f3_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/migrations/versions/6475298b24f3_.py -------------------------------------------------------------------------------- /backend-code/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/common.py -------------------------------------------------------------------------------- /backend-code/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/experimental.py -------------------------------------------------------------------------------- /backend-code/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/anchors.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /backend-code/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /backend-code/models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/tf.py -------------------------------------------------------------------------------- /backend-code/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolo.py -------------------------------------------------------------------------------- /backend-code/models/yolov5l-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5l-demo.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5l.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5m-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5m-demo.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5m.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5n-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5n-demo.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5n.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5s-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5s-demo.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5s.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5x-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5x-demo.yaml -------------------------------------------------------------------------------- /backend-code/models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/models/yolov5x.yaml -------------------------------------------------------------------------------- /backend-code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/requirements.txt -------------------------------------------------------------------------------- /backend-code/sql/data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/sql/data.sql -------------------------------------------------------------------------------- /backend-code/sql/data1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/sql/data1.sql -------------------------------------------------------------------------------- /backend-code/static/pytorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/static/pytorch.png -------------------------------------------------------------------------------- /backend-code/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/static/style.css -------------------------------------------------------------------------------- /backend-code/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/templates/index.html -------------------------------------------------------------------------------- /backend-code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/train.py -------------------------------------------------------------------------------- /backend-code/train_utils/makeTxt_2.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/train_utils/makeTxt_2.0.py -------------------------------------------------------------------------------- /backend-code/train_utils/testTorchEnv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/train_utils/testTorchEnv.py -------------------------------------------------------------------------------- /backend-code/train_utils/voc_label_2.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/train_utils/voc_label_2.0.py -------------------------------------------------------------------------------- /backend-code/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/__init__.py -------------------------------------------------------------------------------- /backend-code/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/activations.py -------------------------------------------------------------------------------- /backend-code/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/augmentations.py -------------------------------------------------------------------------------- /backend-code/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/autoanchor.py -------------------------------------------------------------------------------- /backend-code/utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/autobatch.py -------------------------------------------------------------------------------- /backend-code/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-code/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/aws/mime.sh -------------------------------------------------------------------------------- /backend-code/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/aws/resume.py -------------------------------------------------------------------------------- /backend-code/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/aws/userdata.sh -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/batch_add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/batch_add_user.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/colorprinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/colorprinter.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/dir_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/dir_utils.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/email_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/email_utils.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/init_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/init_database.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/model_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/model_handler.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/response_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/response_utils.py -------------------------------------------------------------------------------- /backend-code/utils/backend_utils/weights_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/backend_utils/weights_init.py -------------------------------------------------------------------------------- /backend-code/utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/benchmarks.py -------------------------------------------------------------------------------- /backend-code/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/callbacks.py -------------------------------------------------------------------------------- /backend-code/utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/dataloaders.py -------------------------------------------------------------------------------- /backend-code/utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/docker/Dockerfile -------------------------------------------------------------------------------- /backend-code/utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /backend-code/utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /backend-code/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/downloads.py -------------------------------------------------------------------------------- /backend-code/utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /backend-code/utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /backend-code/utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /backend-code/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/general.py -------------------------------------------------------------------------------- /backend-code/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /backend-code/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /backend-code/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /backend-code/utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/__init__.py -------------------------------------------------------------------------------- /backend-code/utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /backend-code/utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-code/utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /backend-code/utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /backend-code/utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /backend-code/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/loss.py -------------------------------------------------------------------------------- /backend-code/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/metrics.py -------------------------------------------------------------------------------- /backend-code/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/plots.py -------------------------------------------------------------------------------- /backend-code/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/utils/torch_utils.py -------------------------------------------------------------------------------- /backend-code/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/val.py -------------------------------------------------------------------------------- /backend-code/weights/yolov5-3.1/Garbage_yolov5s_300_epochs.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/weights/yolov5-3.1/Garbage_yolov5s_300_epochs.pt -------------------------------------------------------------------------------- /backend-code/weights/yolov5-3.1/TACO_yolov5s_300_epochs.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/weights/yolov5-3.1/TACO_yolov5s_300_epochs.pt -------------------------------------------------------------------------------- /backend-code/weights/yolov5-6.2/Sample_yolov5s6_300_epochs.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/weights/yolov5-6.2/Sample_yolov5s6_300_epochs.pt -------------------------------------------------------------------------------- /backend-code/weights/yolov5-7.0/COCO_yolov5s6.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/weights/yolov5-7.0/COCO_yolov5s6.pt -------------------------------------------------------------------------------- /backend-code/weights/yolov5s.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/weights/yolov5s.pt -------------------------------------------------------------------------------- /backend-code/yolov5s.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/backend-code/yolov5s.pt -------------------------------------------------------------------------------- /frontend-code/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.editorconfig -------------------------------------------------------------------------------- /frontend-code/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.env.development -------------------------------------------------------------------------------- /frontend-code/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.env.production -------------------------------------------------------------------------------- /frontend-code/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.env.staging -------------------------------------------------------------------------------- /frontend-code/.eslintignore: -------------------------------------------------------------------------------- 1 | # Eslint 会忽略的文件 2 | 3 | .DS_Store 4 | node_modules 5 | dist 6 | dist-ssr 7 | *.local 8 | -------------------------------------------------------------------------------- /frontend-code/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.eslintrc.js -------------------------------------------------------------------------------- /frontend-code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.gitignore -------------------------------------------------------------------------------- /frontend-code/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /frontend-code/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.prettierignore -------------------------------------------------------------------------------- /frontend-code/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.vscode/extensions.json -------------------------------------------------------------------------------- /frontend-code/.vscode/hook.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.vscode/hook.code-snippets -------------------------------------------------------------------------------- /frontend-code/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.vscode/settings.json -------------------------------------------------------------------------------- /frontend-code/.vscode/vue.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/.vscode/vue.code-snippets -------------------------------------------------------------------------------- /frontend-code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/LICENSE -------------------------------------------------------------------------------- /frontend-code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/index.html -------------------------------------------------------------------------------- /frontend-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/package.json -------------------------------------------------------------------------------- /frontend-code/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend-code/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/prettier.config.js -------------------------------------------------------------------------------- /frontend-code/public/app-loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/app-loading.css -------------------------------------------------------------------------------- /frontend-code/public/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/fav.ico -------------------------------------------------------------------------------- /frontend-code/public/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/fav.png -------------------------------------------------------------------------------- /frontend-code/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/favicon.ico -------------------------------------------------------------------------------- /frontend-code/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/favicon.png -------------------------------------------------------------------------------- /frontend-code/public/favicon_backup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/favicon_backup.ico -------------------------------------------------------------------------------- /frontend-code/public/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/images/car.png -------------------------------------------------------------------------------- /frontend-code/public/images/jg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/public/images/jg.png -------------------------------------------------------------------------------- /frontend-code/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/App.vue -------------------------------------------------------------------------------- /frontend-code/src/api/detect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/detect/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/detect/types/detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/detect/types/detect.ts -------------------------------------------------------------------------------- /frontend-code/src/api/hook-demo/use-fetch-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/hook-demo/use-fetch-select.ts -------------------------------------------------------------------------------- /frontend-code/src/api/hook-demo/use-fullscreen-loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/hook-demo/use-fullscreen-loading.ts -------------------------------------------------------------------------------- /frontend-code/src/api/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/login/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/login/types/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/login/types/login.ts -------------------------------------------------------------------------------- /frontend-code/src/api/register/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/register/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/register/types/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/register/types/register.ts -------------------------------------------------------------------------------- /frontend-code/src/api/switch-role/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/switch-role/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/switch-role/types/switch_role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/switch-role/types/switch_role.ts -------------------------------------------------------------------------------- /frontend-code/src/api/table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/table/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/table/types/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/table/types/table.ts -------------------------------------------------------------------------------- /frontend-code/src/api/user-manage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/user-manage/index.ts -------------------------------------------------------------------------------- /frontend-code/src/api/user-manage/types/user-manage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/api/user-manage/types/user-manage.ts -------------------------------------------------------------------------------- /frontend-code/src/assets/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/LOGO.png -------------------------------------------------------------------------------- /frontend-code/src/assets/docs/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/docs/preview1.png -------------------------------------------------------------------------------- /frontend-code/src/assets/docs/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/docs/preview2.png -------------------------------------------------------------------------------- /frontend-code/src/assets/docs/preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/docs/preview3.png -------------------------------------------------------------------------------- /frontend-code/src/assets/error-page/403.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/error-page/403.svg -------------------------------------------------------------------------------- /frontend-code/src/assets/error-page/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/error-page/404.svg -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-0.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-1.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-1_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-1_backup.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-2.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-2_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-2_backup.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo-text-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo-text-3.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo.png -------------------------------------------------------------------------------- /frontend-code/src/assets/layout/logo_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/assets/layout/logo_backup.png -------------------------------------------------------------------------------- /frontend-code/src/components/Notify/NotifyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/Notify/NotifyList.vue -------------------------------------------------------------------------------- /frontend-code/src/components/Notify/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/Notify/data.ts -------------------------------------------------------------------------------- /frontend-code/src/components/Notify/data_backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/Notify/data_backup.ts -------------------------------------------------------------------------------- /frontend-code/src/components/Notify/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/Notify/index.vue -------------------------------------------------------------------------------- /frontend-code/src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /frontend-code/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /frontend-code/src/components/ThemeSwitch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/ThemeSwitch/index.vue -------------------------------------------------------------------------------- /frontend-code/src/components/UploadFile/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/components/UploadFile/index.vue -------------------------------------------------------------------------------- /frontend-code/src/config/async-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/config/async-route.ts -------------------------------------------------------------------------------- /frontend-code/src/config/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/config/layout.ts -------------------------------------------------------------------------------- /frontend-code/src/config/white-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/config/white-list.ts -------------------------------------------------------------------------------- /frontend-code/src/constants/cacheKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/constants/cacheKey.ts -------------------------------------------------------------------------------- /frontend-code/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/directives/index.ts -------------------------------------------------------------------------------- /frontend-code/src/directives/permission/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/directives/permission/index.ts -------------------------------------------------------------------------------- /frontend-code/src/hooks/useFetchSelect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/hooks/useFetchSelect.ts -------------------------------------------------------------------------------- /frontend-code/src/hooks/useFullscreenLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/hooks/useFullscreenLoading.ts -------------------------------------------------------------------------------- /frontend-code/src/hooks/usePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/hooks/usePagination.ts -------------------------------------------------------------------------------- /frontend-code/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /frontend-code/src/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/index.ts -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/404.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/Avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/Avatar.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/UploadFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/UploadFilled.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/bug.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/component.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/component.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/dashboard.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/fullscreen-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/fullscreen-exit.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/fullscreen.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/helpFilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/helpFilled.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/link.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/lock.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/menu.svg -------------------------------------------------------------------------------- /frontend-code/src/icons/svg/unocss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/icons/svg/unocss.svg -------------------------------------------------------------------------------- /frontend-code/src/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/AppMain.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Hamburger/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/NavigationBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/NavigationBar/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/RightPanel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/RightPanel/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Settings/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Sidebar/SidebarItemLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Sidebar/SidebarItemLink.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Sidebar/SidebarLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Sidebar/SidebarLogo.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/TagsView/ScrollPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/TagsView/ScrollPane.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/TagsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/TagsView/index.vue -------------------------------------------------------------------------------- /frontend-code/src/layout/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/components/index.ts -------------------------------------------------------------------------------- /frontend-code/src/layout/hooks/useResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/hooks/useResize.ts -------------------------------------------------------------------------------- /frontend-code/src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/layout/index.vue -------------------------------------------------------------------------------- /frontend-code/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/main.ts -------------------------------------------------------------------------------- /frontend-code/src/plugins/element-plus-icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/plugins/element-plus-icon/index.ts -------------------------------------------------------------------------------- /frontend-code/src/plugins/element-plus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/plugins/element-plus/index.ts -------------------------------------------------------------------------------- /frontend-code/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/plugins/index.ts -------------------------------------------------------------------------------- /frontend-code/src/plugins/vxe-table/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/plugins/vxe-table/index.ts -------------------------------------------------------------------------------- /frontend-code/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/router/index.ts -------------------------------------------------------------------------------- /frontend-code/src/router/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/router/permission.ts -------------------------------------------------------------------------------- /frontend-code/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/index.ts -------------------------------------------------------------------------------- /frontend-code/src/store/modules/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/modules/app.ts -------------------------------------------------------------------------------- /frontend-code/src/store/modules/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/modules/permission.ts -------------------------------------------------------------------------------- /frontend-code/src/store/modules/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/modules/settings.ts -------------------------------------------------------------------------------- /frontend-code/src/store/modules/tags-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/modules/tags-view.ts -------------------------------------------------------------------------------- /frontend-code/src/store/modules/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/store/modules/user.ts -------------------------------------------------------------------------------- /frontend-code/src/styles/element-plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/element-plus.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/index.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/mixins.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/element-plus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/element-plus.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/error-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/error-page.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/index.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/layout.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/login.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/other.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/core/vxe-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/core/vxe-table.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/dark-blue/element-plus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/dark-blue/element-plus.css -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/dark-blue/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/dark-blue/index.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/dark-blue/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/dark-blue/variables.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/dark/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/dark/index.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/dark/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/dark/variables.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/theme/register.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/theme/register.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/transition.scss -------------------------------------------------------------------------------- /frontend-code/src/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/variables.css -------------------------------------------------------------------------------- /frontend-code/src/styles/vxe-table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/styles/vxe-table.scss -------------------------------------------------------------------------------- /frontend-code/src/utils/cache/cookies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/cache/cookies.ts -------------------------------------------------------------------------------- /frontend-code/src/utils/cache/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/cache/localStorage.ts -------------------------------------------------------------------------------- /frontend-code/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/index.ts -------------------------------------------------------------------------------- /frontend-code/src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/permission.ts -------------------------------------------------------------------------------- /frontend-code/src/utils/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/service.ts -------------------------------------------------------------------------------- /frontend-code/src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/utils/validate.ts -------------------------------------------------------------------------------- /frontend-code/src/views/dashboard/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/dashboard/admin/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/dashboard/editor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/dashboard/editor/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/dashboard/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/dashboard/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/dashboard/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/dashboard/user/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/detect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/detect/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/error-page/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/error-page/403.vue -------------------------------------------------------------------------------- /frontend-code/src/views/error-page/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/error-page/404.vue -------------------------------------------------------------------------------- /frontend-code/src/views/error-page/components/ErrorPageLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/error-page/components/ErrorPageLayout.vue -------------------------------------------------------------------------------- /frontend-code/src/views/hook-demo/use-fetch-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/hook-demo/use-fetch-select.vue -------------------------------------------------------------------------------- /frontend-code/src/views/hook-demo/use-fullscreen-loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/hook-demo/use-fullscreen-loading.vue -------------------------------------------------------------------------------- /frontend-code/src/views/login/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/login/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/menu1-1/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/menu1-1/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/menu1-2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/menu1-2/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/menu1-2/menu1-2-1/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/menu1-2/menu1-2-1/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/menu1-2/menu1-2-2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/menu1-2/menu1-2-2/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu1/menu1-3/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu1/menu1-3/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/menu/menu2/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/menu/menu2/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/permission/components/SwitchRoles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/permission/components/SwitchRoles.vue -------------------------------------------------------------------------------- /frontend-code/src/views/permission/directive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/permission/directive.vue -------------------------------------------------------------------------------- /frontend-code/src/views/permission/page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/permission/page.vue -------------------------------------------------------------------------------- /frontend-code/src/views/redirect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/redirect/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/register/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/register/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/table/element-plus/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/table/element-plus/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/table/vxe-table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/table/vxe-table/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/table/vxe-table/tsx/RoleColumnSolts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/table/vxe-table/tsx/RoleColumnSolts.tsx -------------------------------------------------------------------------------- /frontend-code/src/views/table/vxe-table/tsx/StatusColumnSolts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/table/vxe-table/tsx/StatusColumnSolts.tsx -------------------------------------------------------------------------------- /frontend-code/src/views/unocss/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/unocss/index.vue -------------------------------------------------------------------------------- /frontend-code/src/views/user-manage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/src/views/user-manage/index.vue -------------------------------------------------------------------------------- /frontend-code/tests/components/Notify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/tests/components/Notify.test.ts -------------------------------------------------------------------------------- /frontend-code/tests/demo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/tests/demo.test.ts -------------------------------------------------------------------------------- /frontend-code/tests/utils/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/tests/utils/validate.test.ts -------------------------------------------------------------------------------- /frontend-code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/tsconfig.json -------------------------------------------------------------------------------- /frontend-code/types/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/types/api.d.ts -------------------------------------------------------------------------------- /frontend-code/types/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/types/env.d.ts -------------------------------------------------------------------------------- /frontend-code/types/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/types/shims-vue.d.ts -------------------------------------------------------------------------------- /frontend-code/types/vue-router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/types/vue-router.d.ts -------------------------------------------------------------------------------- /frontend-code/unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/unocss.config.ts -------------------------------------------------------------------------------- /frontend-code/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/frontend-code/vite.config.ts -------------------------------------------------------------------------------- /img/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image0.png -------------------------------------------------------------------------------- /img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image1.png -------------------------------------------------------------------------------- /img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image2.png -------------------------------------------------------------------------------- /img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image3.png -------------------------------------------------------------------------------- /img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image4.png -------------------------------------------------------------------------------- /img/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image5.png -------------------------------------------------------------------------------- /img/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/img/image6.png -------------------------------------------------------------------------------- /sql/datasets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/sql/datasets.sql -------------------------------------------------------------------------------- /sql/datasets1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xi029/YOLO-Vue-Flask/HEAD/sql/datasets1.sql --------------------------------------------------------------------------------