基本信息
源码名称:yolov5目标检测实例
源码大小:6.41M
文件格式:.zip
开发语言:Python
更新时间:2024-04-19
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 1 元 
   源码介绍
yolov5目标检测实例

yolov5_obb-master

├── Arial.ttf
├── CONTRIBUTING.md
├── DOTA_devkit
│   ├── DOTA.py
│   ├── DOTA2COCO.py
│   ├── DOTA2JSON.py
│   ├── ImgSplit.py
│   ├── ImgSplit_multi_process.py
│   ├── ResultEnsembleNMS_multi_process.py
│   ├── ResultMerge.py
│   ├── ResultMerge_multi_process.py
│   ├── SplitOnlyImage.py
│   ├── SplitOnlyImage_multi_process.py
│   ├── __init__.py
│   ├── dota_evaluation_task1.py
│   ├── dota_evaluation_task2.py
│   ├── dota_poly2rbox.py
│   ├── dota_utils.py
│   ├── hrsc2016_evaluation.py
│   ├── mAOE_evaluation.py
│   ├── poly_nms_gpu
│   │   ├── Makefile
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── dist
│   │   │   └── rotation-0.0.0-py3.7-linux-x86_64.egg
│   │   ├── nms_wrapper.py
│   │   ├── poly_nms.cpp
│   │   ├── poly_nms.hpp
│   │   ├── poly_nms.pyx
│   │   ├── poly_nms_kernel.cu
│   │   ├── poly_nms_test.py
│   │   ├── poly_overlaps.cpp
│   │   ├── poly_overlaps.hpp
│   │   ├── poly_overlaps.pyx
│   │   ├── poly_overlaps_kernel.cu
│   │   ├── rotation.egg-info
│   │   │   ├── PKG-INFO
│   │   │   ├── SOURCES.txt
│   │   │   ├── dependency_links.txt
│   │   │   └── top_level.txt
│   │   └── setup.py
│   ├── polyiou.cpp
│   ├── polyiou.h
│   ├── polyiou.i
│   ├── polyiou.py
│   ├── polyiou_wrap.cxx
│   ├── prepare_dota1_ms.py
│   ├── prepare_hrsc2016.py
│   ├── results_ensemble.py
│   ├── results_obb2hbb.py
│   ├── setup.py
│   └── ucasaod_evaluation.py
├── Dockerfile
├── LICENSE
├── README.md
├── data
│   ├── 1718level.yaml
│   ├── dotav15_poly.yaml
│   ├── hyps
│   │   ├── obb
│   │   │   ├── hyp.finetune_dota.yaml
│   │   │   └── hyp.finetune_dota_CloseAug.yaml
│   │   └── opt.yaml
│   ├── scripts
│   │   └── download_weights.sh
│   ├── yolov5obb_demo.yaml
│   └── yolov5obb_demo_split.yaml
├── dataset
│   ├── 1718level
│   │   ├── images -> /home/hb2020/lzd/1718level/VOC2012/JPEGImages/
│   │   └── labelTxt -> /home/hb2020/lzd/1718level/VOC2012/anno_dota/
│   └── dataset_demo
│       ├── images
│       │   └── P0032.png
│       ├── imgnamefile.txt
│       └── labelTxt
│           └── P0032.txt
├── detect.py
├── docs
│   ├── ChangeLog.md
│   ├── GetStart.md
│   ├── YOLOv5_README.md
│   ├── detection.png
│   ├── install.md
│   ├── results.png
│   └── train_batch6.jpg
├── export.py
├── hubconf.py
├── models
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-39.pyc
│   │   ├── common.cpython-39.pyc
│   │   ├── experimental.cpython-39.pyc
│   │   └── yolo.cpython-39.pyc
│   ├── 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-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.yaml
│   ├── yolov5m.yaml
│   ├── yolov5n.yaml
│   ├── yolov5s.yaml
│   └── yolov5x.yaml
├── requirements.txt
├── setup.cfg
├── tools
│   └── TestJson2VocClassTxt.py
├── train.py
├── transform_txt.py
├── tutorial.ipynb
├── utils
│   ├── __init__.py
│   ├── activations.py
│   ├── augmentations.py
│   ├── autoanchor.py
│   ├── autobatch.py
│   ├── aws
│   │   ├── __init__.py
│   │   ├── mime.sh
│   │   ├── resume.py
│   │   └── userdata.sh
│   ├── callbacks.py
│   ├── datasets.py
│   ├── 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
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-39.pyc
│   │   └── wandb
│   │       ├── README.md
│   │       ├── __init__.py
│   │       ├── __pycache__
│   │       │   ├── __init__.cpython-39.pyc
│   │       │   └── wandb_utils.cpython-39.pyc
│   │       ├── log_dataset.py
│   │       ├── sweep.py
│   │       ├── sweep.yaml
│   │       └── wandb_utils.py
│   ├── loss.py
│   ├── metrics.py
│   ├── nms_rotated
│   │   ├── __init__.py
│   │   ├── nms_rotated_wrapper.py
│   │   ├── setup.py
│   │   └── src
│   │       ├── box_iou_rotated_utils.h
│   │       ├── nms_rotated_cpu.cpp
│   │       ├── nms_rotated_cuda.cu
│   │       ├── nms_rotated_ext.cpp
│   │       ├── poly_nms_cpu.cpp
│   │       └── poly_nms_cuda.cu
│   ├── plots.py
│   ├── rboxs_utils.py
│   └── torch_utils.py
└── val.py

29 directories, 156 files