• Home page
  • Login
  • Contact us
  • Repo
    • Overview
      • TileDB-BioImaging
    • Examples
      • OME Tiff
      • OME Zarr
    • API Reference
      • Function reference

    On this page

    • to_bioimg
      • Parameters
      • Returns
    • Report an issue

    to_bioimg

    bioimg.wrappers.to_bioimg(src, dest, converter=Converters.OMETIFF, *, verbose=False, **kwargs)

    This function is a wrapper and serves as an all-inclusive API for encapsulating the exportation of TileDB ingested bio-images back into different file formats

    Parameters

    Name Type Description Default
    src str The source path where the TileDB image is stored required
    dest str The destination path for the image file to be exported .tiff, .zarr, *.svs etc.. required
    converter Converters The converter type to be used Converters.OMETIFF
    verbose bool verbose logging, defaults to False False
    kwargs Any keyword arguments for custom exportation behaviour {}

    Returns

    Type Description
    Any None
    • Report an issue