wandb.data_types.Image
Wandb class for images.
Image(
data_or_path: "ImageDataOrPathType",
mode: Optional[str] = None,
caption: Optional[str] = None,
grouping: Optional[str] = None,
classes: Optional[Union['Classes', Sequence[dict]]] = None,
boxes: Optional[Union[Dict[str, 'BoundingBoxes2D'], Dict[str, dict]]] = None,
masks: Optional[Union[Dict[str, 'ImageMask'], Dict[str, dict]]] = None
) -> NoneArguments
data_or_path
(numpy array, string, io) Accepts numpy array of image data, or a PIL image. The class attempts to infer the data format and converts it.
mode
(string) The PIL mode for an image. Most common are "L", "RGB", "RGBA". Full explanation at https://pillow.readthedocs.io/en/4.2.x/handbook/concepts.html#concept-modes.
caption
(string) Label for display of image.
Methods
all_boxes
all_boxesall_captions
all_captionsall_masks
all_masksguess_mode
guess_modeGuess what type of image the np.array is representing
to_uint8
to_uint8Converts floating point image on the range [0,1] and integer images on the range [0,255] to uint8, clipping if necessary.
Class Variables
MAX_DIMENSION
65500
MAX_ITEMS
108
Last updated
Was this helpful?