# enums

Python API: `luxonis_ml.data.utils.enums`

## Classes

### BucketStorage

Underlying object storage for a bucket.

#### Attributes

##### AZURE_BLOB

Azure Blob Storage.

##### GCS

Google Cloud Storage.

##### LOCAL

Local filesystem storage.

##### S3

Amazon S3-compatible storage.

### BucketType

Whether bucket storage is internal to Luxonis.

#### Attributes

##### EXTERNAL

User-provided bucket.

##### INTERNAL

Bucket managed by Luxonis.

### COCOFormat

Supported COCO directory layouts.

#### Attributes

##### FIFTYONE

COCO layout exported by FiftyOne.

##### ROBOFLOW

COCO layout exported by Roboflow.

### ImageType

Image type for image media.

#### Attributes

##### COLOR

Color image, typically 3 channels.

##### DISPARITY

Disparity or depth image.

##### MONO

Monochrome image with 1 channel.

### MediaType

Individual file type.

#### Attributes

##### IMAGE

Image media.

##### POINTCLOUD

Point-cloud media.

##### VIDEO

Video media.

### ParserIssue

Parser issue categories reported during best-effort parsing.

#### Attributes

##### COCO_ISCROWD

COCO annotation is marked with `iscrowd=1`.

##### MISSING_IMAGE

Annotation references an image that does not exist.

##### MISSING_IMAGE_STEM

Annotation image stem cannot be matched to an image file.

##### NON_NUMERIC_ANNOTATION

Annotation contains non-numeric values.

### ParserIssueMessage

Structured message describing a skipped parser item.

#### Attributes

##### annotation_id

Optional annotation identifier.

##### image

Optional image path involved in the issue.

##### parser_issue

Issue category.

##### reason

Human-readable reason.

##### source

Optional source annotation path.

### UpdateMode

Dataset media update mode.

#### Attributes

##### ALL

Update all files.

##### MISSING

Update only missing files.
