cv_manual_uav-detection_uav

我要开发同款
匿名用户2024年07月31日
30阅读
所属分类aipytorch、Base Model、UAV Detection、CVPR2023 Workshop、AP、cv
开源地址https://modelscope.cn/models/iic/cv_manual_uav-detection_uav
授权协议MIT License

作品详情

UAV Model and Dataset

The UAV (Project) is a baseline model for CVPR23 Anti_UAV workshop.We encourage participants to develop automated methods that can detect and track UAVs in thermal infrared videos with UAV model and dataset.

Download Dataset

Install modelscope-cv:

pip install "modelscope[cv]" -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html

Run the download code:

from modelscope.msdatasets import MsDataset
from modelscope.utils.constant import DownloadMode

## Download train set
UAV_train = MsDataset.load('Anti_UAV', namespace='damo', split='train', download_mode=DownloadMode.FORCE_REDOWNLOAD)
print(next(iter(UAV_train)))

## Download validation set
UAV_validation = MsDataset.load('Anti_UAV', namespace='damo', split='validation', download_mode=DownloadMode.FORCE_REDOWNLOAD)
print(next(iter(UAV_validation)))

Download Baseline Model

Install modelscope-cv:

pip install "modelscope[cv]" -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html

Run the download code:

from modelscope.pipelines import pipeline
from modelscope.utils.constant import Tasks
pipeline(Tasks.face_detection, 'damo/cv_manual_uav-detection_uav')

Note: You can find model architecture, weiths, test code in /root/.cache/modelscope/hub/damo/cvmanualuav-detection_uav/.

Evaluation Code

Install CVPRAntiUAV

git clone https://github.com/ly19965/CVPR_Anti_UAV
pip install -r requirements/tests.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
pip install -r requirements/runtime.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html
pip install -r requirements/cv.txt -f https://modelscope.oss-cn-beijing.aliyuncs.com/releases/repo.html

Evaluation model accuracy

cd CVPR_Anti_UAV
python tests/pipelines/test_uav_detection.py

Source Description

The model and code come from the open source community([Project).Please comply with relevant permits。

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论