LUNA16
收藏资源简介:
LUNA16数据集是一个用于医学图像分析的数据集,包含了肺部结节的图像和标注信息。数据集被转换为COCO格式,并分为训练集和测试集,比例为80%训练集和20%测试集。
The LUNA16 dataset is a specialized dataset for medical image analysis, which contains images of pulmonary nodules and their corresponding annotation information. It has been converted to the COCO format and split into training and test sets with an 80% training set and 20% test set split ratio.
COCO_format_for_the_LUNA16_dataset
数据集概述
- 数据集名称: COCO_format_for_the_LUNA16_dataset
- 数据集格式: COCO 格式
- 数据集大小: 1085 张图片
- 数据集划分: 训练集 (869 张图片) 和测试集 (217 张图片),比例为 80% 训练集和 20% 测试集
文件结构
. ├── annotations/ │ ├── PN_train.json │ ├── PN_test.json │ └── ├── PN_train/ │ ├── img_00008.jpg │ ├── img_00634.jpg │ └── ├── PN_test/ │ ├── img_00877.jpg │ ├── img_01085.jpg │ └── └──
文件内容
- PN_train.json 和 PN_test.json 包含以下内容:
- images: 图片信息,包括文件名和ID
- annotations: 标注信息,包括ID、图片ID、类别ID、分割信息、边界框、面积和是否为人群
- categories: 类别信息,包括超类别、ID和名称
示例内容
json { "images": [ { "file_name": "img_00000.jpg", "id": 1 }, ... ], "annotations": [ { "id": 31, "image_id": 32, "category_id": 1, "segmentation": [ [ 382, 304, 389, 304, 389, 311, 382, 311 ] ], "bbox": [ 382, 304, 7, 7 ], "area": 49, "iscrowd": 0 }, ... ], "categories": [ { "supercategory": "PN", "id": 1, "name": "yes" }, ... ] }




