We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: