Module brevettiai.data.image
Image tools for handling image pipelines, augmentation and for loading annotations
Expand source code
"""
Image tools for handling image pipelines, augmentation and for loading annotations
"""
from .image_processor import ImageProcessor
class ImageKeys:
    BOUNDING_BOX = "bbox"
    ZOOM = "zoom_factor"
    SIZE = "size"
    SEQUENCE_RANGE = "sequence_range"
    INSIDE_POINTS = "inside_points"
    BBOX_SIZE_ADJUST = "bbox_size_adjust"
    ANNOTATION = "segmentation_path"
try:
    from .image_loader import ImageLoader, BcimgSequenceLoader, CropResizeProcessor
    from .annotation_loader import AnnotationLoader
    from .image_pipeline import ImagePipeline
    from .segmentation_loader import SegmentationLoader
    from .image_augmenter import ImageAugmenter
except Exception:
    pass
Sub-modules
brevettiai.data.image.annotationbrevettiai.data.image.annotation_loaderbrevettiai.data.image.annotation_parserbrevettiai.data.image.annotation_poolingbrevettiai.data.image.bayer_demosaicbrevettiai.data.image.feature_calculatorbrevettiai.data.image.image_augmenterbrevettiai.data.image.image_loaderbrevettiai.data.image.image_pipelinebrevettiai.data.image.image_processorbrevettiai.data.image.multi_frame_imagerbrevettiai.data.image.segmentation_loaderbrevettiai.data.image.utils
Classes
class ImageKeys- 
Expand source code
class ImageKeys: BOUNDING_BOX = "bbox" ZOOM = "zoom_factor" SIZE = "size" SEQUENCE_RANGE = "sequence_range" INSIDE_POINTS = "inside_points" BBOX_SIZE_ADJUST = "bbox_size_adjust" ANNOTATION = "segmentation_path"Class variables
var ANNOTATIONvar BBOX_SIZE_ADJUSTvar BOUNDING_BOXvar INSIDE_POINTSvar SEQUENCE_RANGEvar SIZEvar ZOOM