You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
470 B
Python
17 lines
470 B
Python
# Copyright (C) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import os
|
|
|
|
path_prefix = os.path.join('cvat', 'apps', 'annotation')
|
|
BUILTIN_FORMATS = (
|
|
os.path.join(path_prefix, 'cvat.py'),
|
|
os.path.join(path_prefix, 'pascal_voc.py'),
|
|
os.path.join(path_prefix, 'yolo.py'),
|
|
os.path.join(path_prefix, 'coco.py'),
|
|
os.path.join(path_prefix, 'mask.py'),
|
|
os.path.join(path_prefix, 'tfrecord.py'),
|
|
os.path.join(path_prefix, 'labelme.py'),
|
|
)
|