Publishing 2019 R1 content
[platform/upstream/dldt.git] / tools / accuracy_checker / accuracy_checker / annotation_converters / __init__.py
1 """
2 Copyright (C) 2018-2019 Intel Corporation
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8       http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 """
16 from .format_converter import BaseFormatConverter
17 from .convert import make_subset, save_annotation
18 from .market1501 import Market1501Converter
19 from .mars import MARSConverter
20 from .pascal_voc import PascalVOCDetectionConverter
21 from .sample_converter import SampleConverter
22 from .wider import WiderFormatConverter
23 from .detection_opencv_storage import DetectionOpenCVStorageFormatConverter
24 from .lfw import FaceReidPairwiseConverter
25 from .vgg_face_regression import LandmarksRegression
26 from .super_resolution_converter import SRConverter
27 from .imagenet import ImageNetFormatConverter
28 from .icdar import ICDAR13RecognitionDatasetConverter, ICDAR15DetectionDatasetConverter
29 from .ms_coco import MSCocoDetectionConverter, MSCocoKeypointsConverter
30 from .cityscapes import CityscapesConverter
31 from .ncf_converter import NCFConverter
32 from .brats import BratsConverter
33
34 __all__ = [
35     'BaseFormatConverter',
36     'make_subset',
37     'save_annotation',
38
39     'ImageNetFormatConverter',
40     'Market1501Converter',
41     'SampleConverter',
42     'PascalVOCDetectionConverter',
43     'WiderFormatConverter',
44     'MARSConverter',
45     'DetectionOpenCVStorageFormatConverter',
46     'FaceReidPairwiseConverter',
47     'SRConverter',
48     'ICDAR13RecognitionDatasetConverter',
49     'ICDAR15DetectionDatasetConverter',
50     'MSCocoKeypointsConverter',
51     'MSCocoDetectionConverter',
52     'CityscapesConverter',
53     'NCFConverter',
54     'BratsConverter'
55 ]