class documentation

class ParserIssue(Enum):

View In Hierarchy

Parser issue categories reported during best-effort parsing.

Constant COCO_ISCROWD COCO annotation is marked with iscrowd=1.
Constant MISSING_IMAGE Annotation references an image that does not exist.
Constant MISSING_IMAGE_STEM Annotation image stem cannot be matched to an image file.
Constant NON_NUMERIC_ANNOTATION Annotation contains non-numeric values.
COCO_ISCROWD: str =

COCO annotation is marked with iscrowd=1.

Value
'coco_iscrowd'
MISSING_IMAGE: str =

Annotation references an image that does not exist.

Value
'missing_image'
MISSING_IMAGE_STEM: str =

Annotation image stem cannot be matched to an image file.

Value
'missing_image_stem'
NON_NUMERIC_ANNOTATION: str =

Annotation contains non-numeric values.

Value
'non_numeric_annotation'