11 lines
164 B
Python
11 lines
164 B
Python
|
|
# Copyright (C) CVAT.ai Corporation
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
from enum import Enum
|
||
|
|
|
||
|
|
|
||
|
|
class SourceDataType(Enum):
|
||
|
|
images = "images"
|
||
|
|
video = "video"
|