|
@@ -1,10 +1,29 @@
|
|
|
+from cvdatasets.annotation.base import Annotations
|
|
|
+from cvdatasets.annotation.base import BaseAnnotations
|
|
|
+from cvdatasets.annotation.files import AnnotationFiles
|
|
|
+from cvdatasets.annotation.mixins.bbox_mixin import BBoxMixin
|
|
|
+from cvdatasets.annotation.mixins.features_mixin import FeaturesMixin
|
|
|
+from cvdatasets.annotation.mixins.parts_mixin import PartsMixin
|
|
|
+from cvdatasets.annotation.types import AnnotationType
|
|
|
+from cvdatasets.annotation.types.file_list import FileListAnnotations
|
|
|
+from cvdatasets.annotation.types.folder_annotations import FolderAnnotations
|
|
|
+from cvdatasets.annotation.types.json_annotations import JSONAnnotations
|
|
|
from cvdatasets.dataset import Dataset
|
|
|
from cvdatasets.dataset import ImageWrapperDataset
|
|
|
-
|
|
|
-from cvdatasets.annotation import BaseAnnotations
|
|
|
-from cvdatasets.annotation.types import FileListAnnotations
|
|
|
-from cvdatasets.annotation.types import FolderAnnotations
|
|
|
-from cvdatasets.annotation.types import JSONAnnotations
|
|
|
-
|
|
|
from cvdatasets.utils import _MetaInfo
|
|
|
|
|
|
+__all__ = [
|
|
|
+ "_MetaInfo",
|
|
|
+ "Annotations",
|
|
|
+ "AnnotationFiles",
|
|
|
+ "AnnotationType",
|
|
|
+ "BaseAnnotations",
|
|
|
+ "BBoxMixin",
|
|
|
+ "Dataset",
|
|
|
+ "FileListAnnotations",
|
|
|
+ "FolderAnnotations",
|
|
|
+ "FolderAnnotations",
|
|
|
+ "ImageWrapperDataset",
|
|
|
+ "JSONAnnotations",
|
|
|
+ "PartsMixin",
|
|
|
+]
|