Open junxnone opened 4 days ago
image_id
image
PIL.Image.Image
width
height
objects
id
area
bbox
category
Coverall
Face_Shield
Gloves
Goggles
Mask
{ 'image_id': 15, 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=943x663 at 0x2373B065C18>, 'width': 943, 'height': 663, 'objects': { 'id': [114, 115, 116, 117], 'area': [3796, 1596, 152768, 81002], 'bbox': [ [302.0, 109.0, 73.0, 52.0], [810.0, 100.0, 57.0, 28.0], [160.0, 31.0, 248.0, 616.0], [741.0, 68.0, 202.0, 401.0] ], 'category': [4, 4, 0, 0] } }
CPPE-5
数据集统计信息
类别
注释
image_id
:图像的唯一标识符。image
:PIL.Image.Image
对象,表示图像数据(自动解码,注意查询方式以提高效率)。width
:图像宽度。height
:图像高度。objects
:一个字典,包含图像中对象的边界框元数据。id
是注释的唯一标识符area
是边界框的面积bbox
是对象的边界框(采用COCO格式)category
是对象的类别,可能的值包括Coverall
(0)/Face_Shield
(1)/Gloves
(2)/Goggles
(3)/Mask
(4)数据集创建过程
Reference