Voxel51/VisDrone2019-DET
收藏Hugging Face2024-05-03 更新2024-06-12 收录
下载链接:
https://hf-mirror.com/datasets/Voxel51/VisDrone2019-DET
下载链接
链接失效反馈资源简介:
---
annotations_creators: []
language: en
license: cc-by-sa-3.0
task_categories:
- object-detection
task_ids: []
pretty_name: VisDrone2019-DET
tags:
- fiftyone
- image
- object-detection
dataset_summary: >

This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 8629
samples.
## Installation
If you haven't already, install FiftyOne:
```bash
pip install -U fiftyone
```
## Usage
```python
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
# Load the dataset
dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET")
## Or just load the first 1000 samples
## dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET", max_samples=1000)
# Launch the App
session = fo.launch_app(dataset)
```
size_categories:
- 1K<n<10K
---
# Dataset Card for VisDrone2019-DET

This is a [FiftyOne](https://github.com/voxel51/fiftyone) version of the VisDrone2019-DET dataset with 8629 samples.
## Installation
If you haven't already, install FiftyOne:
```bash
pip install -U fiftyone
```
## Usage
```python
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
# Load the dataset
# Note: other available arguments include 'max_samples', 'persistent`, 'overwrite' etc
dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET")
# Launch the App
session = fo.launch_app(dataset)
```
## Dataset Details
### Dataset Description
<!-- Provide a longer summary of what this dataset is. -->
- **Curated by:** AISKYEYE team at the Lab of Machine Learning and Data Mining, Tianjin University, China
- **Language(s) (NLP):** en
- **License:** cc-by-sa-3.0
### Dataset Sources
<!-- Provide the basic links for the dataset. -->
- **Repository:** https://github.com/VisDrone/VisDrone-Dataset
- **Paper:** [Detection and Tracking Meet Drones Challenge](https://arxiv.org/abs/2001.06303)
## Dataset Structure
```plaintext
Name: VisDrone2019-DET
Media type: image
Num samples: 8629
Persistent: False
Tags: []
Sample fields:
id: fiftyone.core.fields.ObjectIdField
filepath: fiftyone.core.fields.StringField
tags: fiftyone.core.fields.ListField(fiftyone.core.fields.StringField)
metadata: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.metadata.ImageMetadata)
ground_truth: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Detections)
```
The dataset has 3 splits: "train", "val", and "test". Samples are tagged with their split.
## Dataset Creation
Created by the AISKYEYE team at the Lab of Machine Learning and Data Mining, Tianjin University, China.
### Source Data
#### Who are the source data producers?
The VisDrone Dataset is a large-scale benchmark created by the AISKYEYE team at the Lab of Machine Learning and Data Mining, Tianjin University, China. It contains carefully annotated ground truth data for various computer vision tasks related to drone-based image and video analysis.
#### Personal and Sensitive Information
The authors of the dataset have done their best to exclude identifiable information from the data to protect privacy. If you find your vehicle or personal information in this dataset, please [contact them](tju.drone.vision@gmail.com) and they will remove the corresponding information from their dataset. They are not responsible for any actual or potential harm as the result of using this dataset.
<!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
## Citation
**BibTeX:**
```bibtex
@ARTICLE{9573394,
author={Zhu, Pengfei and Wen, Longyin and Du, Dawei and Bian, Xiao and Fan, Heng and Hu, Qinghua and Ling, Haibin},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={Detection and Tracking Meet Drones Challenge},
year={2021},
volume={},
number={},
pages={1-1},
doi={10.1109/TPAMI.2021.3119563}}
```
## Copyright Information
The copyright of the [VisDrone dataset](https://github.com/VisDrone/VisDrone-Dataset) is reserved by the AISKYEYE team at Lab of Machine Learning and Data Mining, Tianjin University, China. The dataset described on this page is distributed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License, which implies that you must:
(1) attribute the work as specified by the original authors;
(2) may not use this work for commercial purposes ;
(3) if you alter, transform, or build upon this work, you may distribute the resulting work only under the same license.
The dataset is provided “as it is” and we are not responsible for any subsequence from using this dataset.
annotations_creators: []
注释创建者:无
language: en
语言:英语
license: cc-by-sa-3.0
许可证:CC BY-SA 3.0
task_categories:
- 目标检测(object-detection)
task_ids: []
任务子类别:无
pretty_name: VisDrone2019-DET
显示名称:VisDrone2019-DET
tags:
- FiftyOne
- 图像
- 目标检测(object-detection)
dataset_summary: >

本数据集是VisDrone2019-DET的[FiftyOne](https://github.com/voxel51/fiftyone)版本,共包含8629个样本。
## 安装
若尚未安装FiftyOne,请执行以下命令:
bash
pip install -U fiftyone
## 使用方法
python
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
# 加载数据集
dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET")
# 或者仅加载前1000个样本
## dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET", max_samples=1000)
# 启动应用
session = fo.launch_app(dataset)
size_categories:
- 1000 < 样本数量 < 10000
---
# VisDrone2019-DET 数据集卡片

本数据集是VisDrone2019-DET的[FiftyOne](https://github.com/voxel51/fiftyone)版本,共包含8629个样本。
## 安装
若尚未安装FiftyOne,请执行以下命令:
bash
pip install -U fiftyone
## 使用方法
python
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
# 加载数据集
# 注意:其他可用参数包括`max_samples`、`persistent`、`overwrite`等
dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET")
# 启动应用
session = fo.launch_app(dataset)
## 数据集详情
### 数据集描述
<!-- 请提供关于本数据集的详细摘要 -->
- **数据整理者**:中国天津大学机器学习与数据挖掘实验室AISKYEYE团队
- **自然语言**:英语
- **许可证**:CC BY-SA 3.0
### 数据集来源
<!-- 请提供数据集的基础链接 -->
- **代码仓库**:https://github.com/VisDrone/VisDrone-Dataset
- **相关论文**:[《Detection and Tracking Meet Drones Challenge》](https://arxiv.org/abs/2001.06303)
## 数据集结构
plaintext
名称: VisDrone2019-DET
媒体类型: 图像
样本总数: 8629
持久化: False
标签: []
样本字段:
id: fiftyone.core.fields.ObjectIdField
文件路径: fiftyone.core.fields.StringField
样本标签: fiftyone.core.fields.ListField(fiftyone.core.fields.StringField)
图像元数据: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.metadata.ImageMetadata)
真值检测标注: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Detections)
本数据集包含3个划分:训练集(train)、验证集(val)与测试集(test),样本将通过标签标注其所属划分。
## 数据集创建
本数据集由中国天津大学机器学习与数据挖掘实验室AISKYEYE团队创建。
### 原始数据
#### 原始数据生产者是谁?
VisDrone数据集是由中国天津大学机器学习与数据挖掘实验室AISKYEYE团队创建的大规模基准数据集,包含针对无人机图像与视频分析相关的各类计算机视觉任务的精细标注真值数据。
#### 个人与敏感信息说明
数据集作者已尽力移除数据中可识别的个人信息以保护隐私。若您在本数据集中发现您的车辆或个人信息,请通过[tju.drone.vision@gmail.com](mailto:tju.drone.vision@gmail.com)联系他们,团队将移除数据中对应的相关信息。数据集作者不对因使用本数据集所导致的任何实际或潜在损害承担责任。
<!-- 请说明本数据集是否包含可被视为个人、敏感或私密的数据(例如:包含地址、唯一可识别的姓名或别名、种族或族裔起源、性取向、宗教信仰、政治观点、财务或健康数据等)。若已采取数据匿名化措施,请描述匿名化流程。 -->
## 引用
**BibTeX引用格式:**
bibtex
@ARTICLE{9573394,
author={Zhu, Pengfei and Wen, Longyin and Du, Dawei and Bian, Xiao and Fan, Heng and Hu, Qinghua and Ling, Haibin},
journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
title={Detection and Tracking Meet Drones Challenge},
year={2021},
volume={},
number={},
pages={1-1},
doi={10.1109/TPAMI.2021.3119563}}
## 版权信息
[VisDrone数据集](https://github.com/VisDrone/VisDrone-Dataset)的版权由中国天津大学机器学习与数据挖掘实验室AISKYEYE团队保留。本页面描述的数据集采用知识共享署名-非商业性使用-相同方式共享3.0(CC BY-NC-SA 3.0)许可证进行分发,这意味着您必须遵守以下要求:
1. 按照原作者指定的方式注明作品出处;
2. 不得将本作品用于商业用途;
3. 若您对本作品进行修改、转换或基于其进行二次创作,仅可在相同许可证条款下分发衍生作品。
本数据集按“现状”提供,我们不对因使用本数据集所引发的任何后续问题承担责任。
提供机构:
Voxel51
原始信息汇总
数据集概述
名称: VisDrone2019-DET
样本数量: 8629
语言: 英语
许可证: cc-by-sa-3.0
任务类别: 目标检测
媒体类型: 图像
数据集创建者: AISKYEYE团队,天津大学机器学习和数据挖掘实验室
数据集来源:
- 仓库: https://github.com/VisDrone/VisDrone-Dataset
- 论文: Detection and Tracking Meet Drones Challenge
数据集结构
-
样本字段:
- id: fiftyone.core.fields.ObjectIdField
- filepath: fiftyone.core.fields.StringField
- tags: fiftyone.core.fields.ListField(fiftyone.core.fields.StringField)
- metadata: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.metadata.ImageMetadata)
- ground_truth: fiftyone.core.fields.EmbeddedDocumentField(fiftyone.core.labels.Detections)
-
数据集分割: 训练集、验证集、测试集
数据集创建
- 源数据生产者: AISKYEYE团队,天津大学机器学习和数据挖掘实验室
- 个人和敏感信息: 数据集作者已尽力排除可识别信息以保护隐私。如发现个人或车辆信息,请联系作者进行移除。
引用信息
bibtex @ARTICLE{9573394, author={Zhu, Pengfei and Wen, Longyin and Du, Dawei and Bian, Xiao and Fan, Heng and Hu, Qinghua and Ling, Haibin}, journal={IEEE Transactions on Pattern Analysis and Machine Intelligence}, title={Detection and Tracking Meet Drones Challenge}, year={2021}, volume={}, number={}, pages={1-1}, doi={10.1109/TPAMI.2021.3119563}}
版权信息
- 版权所有者: AISKYEYE团队,天津大学机器学习和数据挖掘实验室
- 许可证详情: 创意共享署名-非商业性使用-相同方式共享3.0许可证
以上信息基于提供的数据集详情页面README文件内容整理。
AI搜集汇总
数据集介绍

构建方式
VisDrone2019-DET数据集由AISKYEYE团队在天津大学机器学习与数据挖掘实验室精心构建,包含8629个样本。该数据集通过无人机拍摄的图像进行标注,涵盖了多种计算机视觉任务,如目标检测。数据集分为训练、验证和测试三个部分,每个样本均附有详细的标注信息,确保了数据的高质量和实用性。
特点
VisDrone2019-DET数据集的主要特点在于其大规模和高精度。数据集包含8629张图像,每张图像均经过精细标注,适用于目标检测任务。此外,数据集的多样性和复杂性使其成为评估和训练计算机视觉模型的理想选择。数据集还遵循CC BY-SA 3.0许可协议,确保了使用的灵活性和合法性。
使用方法
使用VisDrone2019-DET数据集,首先需要安装FiftyOne库,通过以下命令进行安装:`pip install -U fiftyone`。随后,可以使用Python代码加载数据集,例如:`dataset = fouh.load_from_hub("Voxel51/VisDrone2019-DET")`。加载后,可以通过FiftyOne的应用程序界面进行数据集的可视化和分析,进一步支持目标检测模型的训练和评估。
背景与挑战
背景概述
VisDrone2019-DET数据集由天津大学机器学习与数据挖掘实验室的AISKYEYE团队创建,旨在为无人机图像分析中的目标检测任务提供一个大规模的基准。该数据集包含8629个样本,涵盖了多种复杂的场景和目标类型,为计算机视觉领域的研究提供了丰富的资源。其核心研究问题是如何在无人机视角下准确地检测和识别目标,这对于无人机在实际应用中的导航、监控和搜索救援等任务至关重要。该数据集的发布不仅推动了目标检测技术的发展,也为相关领域的研究提供了宝贵的数据支持。
当前挑战
VisDrone2019-DET数据集在构建过程中面临了多重挑战。首先,无人机视角下的图像具有高度的动态性和复杂性,导致目标检测的难度增加。其次,数据集的标注工作需要高精度的标注,以确保训练模型的准确性。此外,数据集中可能包含敏感信息,如车辆和个人身份,需要进行严格的隐私保护措施。这些挑战不仅影响了数据集的质量,也对后续的研究和应用提出了更高的要求。
常用场景
经典使用场景
在计算机视觉领域,Voxel51/VisDrone2019-DET数据集以其丰富的无人机视角图像和精确的对象检测标注而著称。该数据集的经典使用场景主要集中在无人机图像中的目标检测任务,研究人员利用这些标注数据训练和评估各种深度学习模型,以提高无人机在复杂环境中的目标识别能力。
解决学术问题
Voxel51/VisDrone2019-DET数据集解决了无人机视角下目标检测的学术研究问题。通过提供高质量的标注数据,该数据集帮助研究人员克服了无人机图像中常见的遮挡、光照变化和视角多样性等挑战,推动了目标检测算法在实际应用中的性能提升。
衍生相关工作
基于Voxel51/VisDrone2019-DET数据集,许多相关工作得以展开,包括但不限于改进的目标检测算法、多目标跟踪技术以及无人机图像的实时处理系统。这些研究不仅提升了无人机在复杂环境中的感知能力,还为相关领域的技术进步提供了坚实的基础。
以上内容由AI搜集并总结生成



