yolo_seg_labeled_data_for_small_toycar
收藏资源简介:
该数据集是一个用于小型遥控/玩具汽车的自动驾驶YOLO目标检测数据集。它包含了在停车场和赛道驾驶环境中捕获的图像的边界框标注。数据集由4个子集组成,总计约75,000张图像,每个子集都包含训练集、验证集和测试集,并以tar.gz压缩包形式提供。子集包括'parking_front'(前停车场环境,10,719张图像,3个类别)、'parking_rear'(后停车场环境,5,639张图像,3个类别)、'track'(赛道驾驶环境,20,135张图像,4个类别)和'track_crosswalk'(赛道人行横道环境,38,692张图像,1个类别)。每个子集的类别信息详细列出了每个类别的ID、名称和描述。数据集采用YOLO格式(.txt)进行标注,适用于目标检测任务。
This dataset is a YOLO-based object detection dataset tailored for autonomous driving of small remote-controlled or toy cars. It contains bounding box annotations for images captured in parking lot and racetrack driving scenarios. The dataset consists of 4 subsets with a total of approximately 75,000 images. Each subset includes training, validation, and test sets, and is provided in tar.gz compressed archive format. The subsets are 'parking_front' (front parking lot scenario, 10,719 images, 3 categories), 'parking_rear' (rear parking lot scenario, 5,639 images, 3 categories), 'track' (racetrack driving scenario, 20,135 images, 4 categories), and 'track_crosswalk' (racetrack crosswalk scenario, 38,692 images, 1 category). For each subset, the category information details the ID, name, and description of each category. The dataset uses YOLO format (.txt) for annotations, making it suitable for object detection tasks.
数据集概述
基本信息
- 数据集名称: YOLO Segmentation Labeled Data for Small Toy Car
- 许可证: CC BY 4.0
- 任务类别: 目标检测
- 标签: yolo, autonomous-driving, parking, small-car, toycar, roboflow
- 数据规模: 10K < n < 100K
数据集描述
这是一个用于小型遥控/玩具汽车的自动驾驶YOLO目标检测数据集。它包含在停车场和赛道驾驶环境中捕获的图像及其边界框标注。
数据集结构
数据集总共包含4个子集,约75,000张图像。每个子集都包含train / valid / test划分,并以tar.gz归档文件形式提供。
| 子集 | 描述 | 图像数量 | 类别数量 |
|---|---|---|---|
parking_front |
前方停车环境 | 10,719 | 3 |
parking_rear |
后方停车环境 | 5,639 | 3 |
track |
赛道驾驶环境 | 20,135 | 4 |
track_crosswalk |
赛道人行横道环境 | 38,692 | 1 |
类别信息
parking_front
| ID | 类别名称 | 描述 |
|---|---|---|
| 0 | out_line |
停车区轮廓线 |
| 1 | parking_lot |
停车场区域 |
| 2 | parking_space |
单个停车位 |
parking_rear
| ID | 类别名称 | 描述 |
|---|---|---|
| 0 | end_line |
停车结束线 |
| 1 | parking_lot |
停车场区域 |
| 2 | parking_space |
单个停车位 |
track
| ID | 类别名称 | 描述 |
|---|---|---|
| 0 | car |
汽车 |
| 1 | lane1 |
车道1 |
| 2 | lane2 |
车道2 |
| 3 | traffic_light |
交通信号灯 |
track_crosswalk
| ID | 类别名称 | 描述 |
|---|---|---|
| 0 | crosswalk |
人行横道 |
数据组织方式
每个子集解压后的目录结构如下:
{subset}/ ├── data.yaml ├── train/ │ ├── images/ │ │ ├── chunk_0000/ # 图像文件(每块1,000张) │ │ ├── chunk_0001/ │ │ └── ... │ └── labels/ │ ├── chunk_0000/ # YOLO格式标注文件 (.txt) │ ├── chunk_0001/ │ └── ... ├── valid/ │ ├── images/ │ └── labels/ └── test/ ├── images/ └── labels/
标注格式
数据集使用YOLO格式(.txt文件)。每行代表一个对象:
<class_id> <x_center> <y_center> <width> <height>
所有值均相对于图像尺寸进行了归一化(0~1)。




