large-image


Namelarge-image JSON
Version 1.28.1 PyPI version JSON
download
home_pagehttps://github.com/girder/large_image
SummaryPython modules to work with large, multiresolution images.
upload_time2024-04-11 14:11:01
maintainerNone
docs_urlNone
authorKitware, Inc.
requires_python>=3.8
licenseApache Software License 2.0
keywords large_image
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Large Image
===========

|build-status| |codecov-io| |license-badge| |doi-badge| |pypi-badge|

.. |build-status| image:: https://img.shields.io/circleci/build/github/girder/large_image.svg
    :target: https://circleci.com/gh/girder/large_image
    :alt: Build Status

.. |license-badge| image:: https://img.shields.io/badge/license-Apache%202-blue.svg
    :target: https://raw.githubusercontent.com/girder/large_image/master/LICENSE
    :alt: License

.. |codecov-io| image:: https://img.shields.io/codecov/c/github/girder/large_image.svg
   :target: https://codecov.io/github/girder/large_image?branch=master
   :alt: codecov.io

.. |doi-badge| image:: https://img.shields.io/badge/DOI-10.5281%2Fzenodo.4723355-blue
   :target: https://zenodo.org/badge/latestdoi/45569214

.. |pypi-badge| image:: https://img.shields.io/pypi/v/large-image.svg?logo=python&logoColor=white
   :target: https://pypi.org/project/large-image/

*Python modules to work with large, multiresolution images.*

Large Image is developed and maintained by the Data & Analytics group at `Kitware, Inc. <https://kitware.com>`_ for processing large geospatial and medical images. This provides the backbone for several of our image analysis platforms including `Resonant GeoData <https://github.com/ResonantGeoData/ResonantGeoData>`_, `HistomicsUI <https://github.com/DigitalSlideArchive/HistomicsUI>`_, and `the Digital Slide Archive <https://digitalslidearchive.github.io/digital_slide_archive/>`_.


Highlights
----------

- Tile serving made easy
- Supports a wide variety of geospatial and medical image formats
- Convert to tiled Cloud Optimized (Geo)Tiffs (also known as pyramidal tiffs)
- Python methods for retiling or accessing regions of images efficiently
- Options for restyling tiles, such as dynamically applying color and band transform


Installation
------------

In addition to installing the ``large-image`` package, you'll need at least one tile source (a ``large-image-source-xxx`` package).   You can install everything from the main project with one of these commands:

Pip
~~~

Install common tile sources on linux, OSX, or Windows::

    pip install large-image[common]

Install all tile sources on linux::

    pip install large-image[all] --find-links https://girder.github.io/large_image_wheels

Install all tile sources and all Girder plugins on linux::

    pip install large-image[all] girder-large-image-annotation[tasks] --find-links https://girder.github.io/large_image_wheels


Conda
~~~~~

Conda makes dependency management a bit easier if not on Linux. Some of the source modules are available on conda-forge. You can install the following::

    conda install -c conda-forge large-image-source-gdal
    conda install -c conda-forge large-image-source-tiff
    conda install -c conda-forge large-image-converter


Docker Image
~~~~~~~~~~~~

Included in this repository’s packages is a pre-built Docker image that has all
of the dependencies to read any supported image format.

This is particularly useful if you do not want to install some of the heavier
dependencies like GDAL on your system or want a dedicated and isolated
environment for working with large images.

To use, pull the image and run it by mounting a local volume where the
imagery is stored::

    docker pull ghcr.io/girder/large_image:latest
    docker run -v /path/to/images:/opt/images ghcr.io/girder/large_image:latest


Modules
-------

Large Image consists of several Python modules designed to work together.  These include:

- ``large-image``: The core module.

  You can specify extras_require of the name of any tile source included with this repository.  For instance, you can do ``pip install large-image[tiff]``.  There are additional extras_require options:

  - ``sources``: all of the tile sources in the repository, a specific source name (e.g., ``tiff``)

  - ``memcached``: use memcached for tile caching

  - ``converter``: include the converter module

  - ``colormaps``: use matplotlib for named color palettes used in styles

  - ``tiledoutput``: support for emitting large regions as tiled tiffs

  - ``performance``: include optional modules that can improve performance

  - ``common``: all of the tile sources and above packages that will install directly from pypi without other external libraries on linux, OSX, and Windows.

  - ``all``: for all of the above

- ``large-image-converter``: A utility for using pyvips and other libraries to convert images into pyramidal tiff files that can be read efficiently by large_image.
  You can specify extras_require of ``jp2k`` to include modules to allow output to JPEG2000 compression, ``sources`` to include all sources, ``stats`` to include modules to allow computing compression noise statistics, ``geospatial`` to include support for converting geospatial sources, or ``all`` for all of the optional extras_require.

- Tile sources:

  - ``large-image-source-bioformats``: A tile source for reading any file handled by the Java Bioformats library.

  - ``large-image-source-deepzoom``: A tile source for reading Deepzoom tiles.

  - ``large-image-source-dicom``: A tile source for reading DICOM WSI images.

  - ``large-image-source-gdal``: A tile source for reading geotiff files via GDAL.  This handles source data with more complex transforms than the mapnik tile source.

  - ``large-image-source-mapnik``: A tile source for reading geotiff and netcdf files via Mapnik and GDAL.  This handles more vector issues than the gdal tile source.

  - ``large-image-source-multi``: A tile source for compositing other tile sources into a single multi-frame source.

  - ``large-image-source-nd2``: A tile source for reading nd2 (NIS Element) images.

  - ``large-image-source-ometiff``: A tile source using the tiff library that can handle some multi-frame OMETiff files.

  - ``large-image-source-openjpeg``: A tile source using the Glymur library to read jp2 (JPEG 2000) files.

  - ``large-image-source-openslide``: A tile source using the OpenSlide library.  This works with svs, ndpi, Mirax, tiff, vms, and other file formats.

  - ``large-image-source-pil``: A tile source for small images via the Python Imaging Library (Pillow).

  - ``large-image-source-tiff``: A tile source for reading pyramidal tiff files in common compression formats.

  - ``large-image-source-tifffile``: A tile source using the tifffile library that can handle a wide variety of tiff-like files.

  - ``large-image-source-vips``: A tile source for reading any files handled by libvips.  This also can be used for writing tiled images from numpy arrays.

  - ``large-image-source-zarr``: A tile source using the zarr library that can handle OME-Zarr (OME-NGFF) files as well as some other zarr files.

  - ``large-image-source-test``: A tile source that generates test tiles, including a simple fractal pattern.  Useful for testing extreme zoom levels.

  - ``large-image-source-dummy``: A tile source that does nothing.

  Most tile sources can be used with girder-large-image.  You can specific an extras_require of ``girder`` to include ``girder-large-image`` with the source.

- As a Girder plugin:

  - ``girder-large-image``: Large Image as a Girder_ 3.x plugin.
    You can specify extras_require of ``tasks`` to install a Girder Worker task that can convert otherwise unreadable images to pyramidal tiff files.

  - ``girder-large-image-annotation``: Annotations for large images as a Girder_ 3.x plugin.

  - ``large-image-tasks``: A utility for running the converter via Girder Worker.
    You can specify an extras_require of ``girder`` to include modules needed to work with the Girder remote worker or ``worker`` to include modules needed on the remote side of the Girder remote worker.  If neither is specified, some conversion tasks can be run using Girder local jobs.


Developer Installation
----------------------

To install all packages from source, clone the repository::

    git clone https://github.com/girder/large_image.git
    cd large_image

Install all packages and dependencies::

    pip install -e . -r requirements-dev.txt

If you aren't developing with Girder 3, you can skip installing those components.  Use ``requirements-dev-core.txt`` instead of ``requirements-dev.txt``::

    pip install -e . -r requirements-dev-core.txt


Tile source prerequisites
=========================

Many tile sources have complex prerequisites.  These can be installed directly using your system's package manager or from some prebuilt Python wheels for Linux.  The prebuilt wheels are not official packages, but they can be used by instructing pip to use them by preference::

    pip install -e . -r requirements-dev.txt --find-links https://girder.github.io/large_image_wheels


.. _Girder: https://github.com/girder/girder

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/girder/large_image",
    "name": "large-image",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "large_image",
    "author": "Kitware, Inc.",
    "author_email": "kitware@kitware.com",
    "download_url": "https://files.pythonhosted.org/packages/83/e3/bf0af8c65917ba8c41696a99376d7511812fbc7844c51f5ceda1da92cd22/large-image-1.28.1.tar.gz",
    "platform": null,
    "description": "Large Image\n===========\n\n|build-status| |codecov-io| |license-badge| |doi-badge| |pypi-badge|\n\n.. |build-status| image:: https://img.shields.io/circleci/build/github/girder/large_image.svg\n    :target: https://circleci.com/gh/girder/large_image\n    :alt: Build Status\n\n.. |license-badge| image:: https://img.shields.io/badge/license-Apache%202-blue.svg\n    :target: https://raw.githubusercontent.com/girder/large_image/master/LICENSE\n    :alt: License\n\n.. |codecov-io| image:: https://img.shields.io/codecov/c/github/girder/large_image.svg\n   :target: https://codecov.io/github/girder/large_image?branch=master\n   :alt: codecov.io\n\n.. |doi-badge| image:: https://img.shields.io/badge/DOI-10.5281%2Fzenodo.4723355-blue\n   :target: https://zenodo.org/badge/latestdoi/45569214\n\n.. |pypi-badge| image:: https://img.shields.io/pypi/v/large-image.svg?logo=python&logoColor=white\n   :target: https://pypi.org/project/large-image/\n\n*Python modules to work with large, multiresolution images.*\n\nLarge Image is developed and maintained by the Data & Analytics group at `Kitware, Inc. <https://kitware.com>`_ for processing large geospatial and medical images. This provides the backbone for several of our image analysis platforms including `Resonant GeoData <https://github.com/ResonantGeoData/ResonantGeoData>`_, `HistomicsUI <https://github.com/DigitalSlideArchive/HistomicsUI>`_, and `the Digital Slide Archive <https://digitalslidearchive.github.io/digital_slide_archive/>`_.\n\n\nHighlights\n----------\n\n- Tile serving made easy\n- Supports a wide variety of geospatial and medical image formats\n- Convert to tiled Cloud Optimized (Geo)Tiffs (also known as pyramidal tiffs)\n- Python methods for retiling or accessing regions of images efficiently\n- Options for restyling tiles, such as dynamically applying color and band transform\n\n\nInstallation\n------------\n\nIn addition to installing the ``large-image`` package, you'll need at least one tile source (a ``large-image-source-xxx`` package).   You can install everything from the main project with one of these commands:\n\nPip\n~~~\n\nInstall common tile sources on linux, OSX, or Windows::\n\n    pip install large-image[common]\n\nInstall all tile sources on linux::\n\n    pip install large-image[all] --find-links https://girder.github.io/large_image_wheels\n\nInstall all tile sources and all Girder plugins on linux::\n\n    pip install large-image[all] girder-large-image-annotation[tasks] --find-links https://girder.github.io/large_image_wheels\n\n\nConda\n~~~~~\n\nConda makes dependency management a bit easier if not on Linux. Some of the source modules are available on conda-forge. You can install the following::\n\n    conda install -c conda-forge large-image-source-gdal\n    conda install -c conda-forge large-image-source-tiff\n    conda install -c conda-forge large-image-converter\n\n\nDocker Image\n~~~~~~~~~~~~\n\nIncluded in this repository\u2019s packages is a pre-built Docker image that has all\nof the dependencies to read any supported image format.\n\nThis is particularly useful if you do not want to install some of the heavier\ndependencies like GDAL on your system or want a dedicated and isolated\nenvironment for working with large images.\n\nTo use, pull the image and run it by mounting a local volume where the\nimagery is stored::\n\n    docker pull ghcr.io/girder/large_image:latest\n    docker run -v /path/to/images:/opt/images ghcr.io/girder/large_image:latest\n\n\nModules\n-------\n\nLarge Image consists of several Python modules designed to work together.  These include:\n\n- ``large-image``: The core module.\n\n  You can specify extras_require of the name of any tile source included with this repository.  For instance, you can do ``pip install large-image[tiff]``.  There are additional extras_require options:\n\n  - ``sources``: all of the tile sources in the repository, a specific source name (e.g., ``tiff``)\n\n  - ``memcached``: use memcached for tile caching\n\n  - ``converter``: include the converter module\n\n  - ``colormaps``: use matplotlib for named color palettes used in styles\n\n  - ``tiledoutput``: support for emitting large regions as tiled tiffs\n\n  - ``performance``: include optional modules that can improve performance\n\n  - ``common``: all of the tile sources and above packages that will install directly from pypi without other external libraries on linux, OSX, and Windows.\n\n  - ``all``: for all of the above\n\n- ``large-image-converter``: A utility for using pyvips and other libraries to convert images into pyramidal tiff files that can be read efficiently by large_image.\n  You can specify extras_require of ``jp2k`` to include modules to allow output to JPEG2000 compression, ``sources`` to include all sources, ``stats`` to include modules to allow computing compression noise statistics, ``geospatial`` to include support for converting geospatial sources, or ``all`` for all of the optional extras_require.\n\n- Tile sources:\n\n  - ``large-image-source-bioformats``: A tile source for reading any file handled by the Java Bioformats library.\n\n  - ``large-image-source-deepzoom``: A tile source for reading Deepzoom tiles.\n\n  - ``large-image-source-dicom``: A tile source for reading DICOM WSI images.\n\n  - ``large-image-source-gdal``: A tile source for reading geotiff files via GDAL.  This handles source data with more complex transforms than the mapnik tile source.\n\n  - ``large-image-source-mapnik``: A tile source for reading geotiff and netcdf files via Mapnik and GDAL.  This handles more vector issues than the gdal tile source.\n\n  - ``large-image-source-multi``: A tile source for compositing other tile sources into a single multi-frame source.\n\n  - ``large-image-source-nd2``: A tile source for reading nd2 (NIS Element) images.\n\n  - ``large-image-source-ometiff``: A tile source using the tiff library that can handle some multi-frame OMETiff files.\n\n  - ``large-image-source-openjpeg``: A tile source using the Glymur library to read jp2 (JPEG 2000) files.\n\n  - ``large-image-source-openslide``: A tile source using the OpenSlide library.  This works with svs, ndpi, Mirax, tiff, vms, and other file formats.\n\n  - ``large-image-source-pil``: A tile source for small images via the Python Imaging Library (Pillow).\n\n  - ``large-image-source-tiff``: A tile source for reading pyramidal tiff files in common compression formats.\n\n  - ``large-image-source-tifffile``: A tile source using the tifffile library that can handle a wide variety of tiff-like files.\n\n  - ``large-image-source-vips``: A tile source for reading any files handled by libvips.  This also can be used for writing tiled images from numpy arrays.\n\n  - ``large-image-source-zarr``: A tile source using the zarr library that can handle OME-Zarr (OME-NGFF) files as well as some other zarr files.\n\n  - ``large-image-source-test``: A tile source that generates test tiles, including a simple fractal pattern.  Useful for testing extreme zoom levels.\n\n  - ``large-image-source-dummy``: A tile source that does nothing.\n\n  Most tile sources can be used with girder-large-image.  You can specific an extras_require of ``girder`` to include ``girder-large-image`` with the source.\n\n- As a Girder plugin:\n\n  - ``girder-large-image``: Large Image as a Girder_ 3.x plugin.\n    You can specify extras_require of ``tasks`` to install a Girder Worker task that can convert otherwise unreadable images to pyramidal tiff files.\n\n  - ``girder-large-image-annotation``: Annotations for large images as a Girder_ 3.x plugin.\n\n  - ``large-image-tasks``: A utility for running the converter via Girder Worker.\n    You can specify an extras_require of ``girder`` to include modules needed to work with the Girder remote worker or ``worker`` to include modules needed on the remote side of the Girder remote worker.  If neither is specified, some conversion tasks can be run using Girder local jobs.\n\n\nDeveloper Installation\n----------------------\n\nTo install all packages from source, clone the repository::\n\n    git clone https://github.com/girder/large_image.git\n    cd large_image\n\nInstall all packages and dependencies::\n\n    pip install -e . -r requirements-dev.txt\n\nIf you aren't developing with Girder 3, you can skip installing those components.  Use ``requirements-dev-core.txt`` instead of ``requirements-dev.txt``::\n\n    pip install -e . -r requirements-dev-core.txt\n\n\nTile source prerequisites\n=========================\n\nMany tile sources have complex prerequisites.  These can be installed directly using your system's package manager or from some prebuilt Python wheels for Linux.  The prebuilt wheels are not official packages, but they can be used by instructing pip to use them by preference::\n\n    pip install -e . -r requirements-dev.txt --find-links https://girder.github.io/large_image_wheels\n\n\n.. _Girder: https://github.com/girder/girder\n",
    "bugtrack_url": null,
    "license": "Apache Software License 2.0",
    "summary": "Python modules to work with large, multiresolution images.",
    "version": "1.28.1",
    "project_urls": {
        "Homepage": "https://github.com/girder/large_image"
    },
    "split_keywords": [
        "large_image"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f125636a2503802bc837decaf76cf52c2df8440eb837d72916ec42adfc95558",
                "md5": "01cea4438004be2fc0df5887202abb60",
                "sha256": "3a1d74cebc2c711cd18c5e3cd02c3ad59a162542199a35fa0c3a6c2de779ade9"
            },
            "downloads": -1,
            "filename": "large_image-1.28.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "01cea4438004be2fc0df5887202abb60",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 94367,
            "upload_time": "2024-04-11T14:10:51",
            "upload_time_iso_8601": "2024-04-11T14:10:51.595538Z",
            "url": "https://files.pythonhosted.org/packages/9f/12/5636a2503802bc837decaf76cf52c2df8440eb837d72916ec42adfc95558/large_image-1.28.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83e3bf0af8c65917ba8c41696a99376d7511812fbc7844c51f5ceda1da92cd22",
                "md5": "d0fae56d2c71d8cc46ba5a8ebedcfbb3",
                "sha256": "ae92ff1b336bfc595391e134137bb379daae75b4738303ed501b35ae503e03bb"
            },
            "downloads": -1,
            "filename": "large-image-1.28.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d0fae56d2c71d8cc46ba5a8ebedcfbb3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 156673,
            "upload_time": "2024-04-11T14:11:01",
            "upload_time_iso_8601": "2024-04-11T14:11:01.060471Z",
            "url": "https://files.pythonhosted.org/packages/83/e3/bf0af8c65917ba8c41696a99376d7511812fbc7844c51f5ceda1da92cd22/large-image-1.28.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-11 14:11:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "girder",
    "github_project": "large_image",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "tox": true,
    "lcname": "large-image"
}
        
Elapsed time: 0.25742s