Directly loading DICOM objects from Google Cloud or AWS in Python
Last updated
Was this helpful?
Last updated
Was this helpful?
DICOM files in the IDC are stored as "blobs" on the cloud, with one copy housed on Google Cloud Storage (GCS) and another on Amazon Web Services (AWS) S3 storage. By using the right tools, these blobs can be wrapped to appear as "file-like" objects to Python DICOM libraries, enabling intelligent loading of DICOM files directly from cloud storage as if they were local files without having to first download them onto a local drive.
is popular library for working with DICOM files in Python. Its function is able to accept any "file-like" object, meaning you can read a file straight from a cloud blob if you know its path. See for information on finding the paths of the blobs for DICOM objects in IDC. The dcmread
function also has some other options that allow you to control what is read. For example you can choose to read only the metadata and not the pixel data, or read only certain attributes. In the following two sections, we demonstrate these abilities using first Google Cloud Storage blobs and then AWS S3 blobs.
Mapping IDC DICOM series to bucket URLs
All of the image data available from IDC is replicated between public Google Cloud Storage (GCS) and AWS buckets. pip-installable package provides convenience functions to get URLs of the files corresponding to a given DICOM series.
From Google Cloud Storage blobs
To read from a GCS blob with Pydicom, first create a storage client and blob object, representing a remote blob object stored on the cloud, then simply use the .open('rb')
method to create a readable file-like object that can be passed to the dcmread
function.
Reading only metadata or only specific attributes will reduce the amount of data that needs to be pulled down under some circumstances and therefore make the loading process faster. This depends on the size of the attributes being retrieved, the chunk_size
(a parameter of the open()
method that controls how much data is pulled in each HTTP request to the server), and the position of the requested element within the file (since it is necessary to seek through the file until the requested attributes are found, but any data after the requested attributes need not be pulled).
From AWS S3 blobs
The boto3
package provides a Python API for accessing S3 blobs. It can be installed with pip install boto3
. In order to access open IDC data without providing AWS credentials, it is necessary to configure your own client object such that it does not require signing. This is demonstrated in the following example, which repeats the above example using the counterpart of the same blob on AWS S3. If you want to read an entire file, we recommend using a temporary buffer like this:
In the remainder of the examples, we will use only the GCS access method for brevity. However, you should be able to straightforwardly swap out the opened GCS blob for the opened AWS S3 blob to achieve the same effect with Amazon S3.
In this first example, we use lazy frame retrieval to load only a specific spatial patch from a large whole slide image from the IDC.
Running this code should produce an output that looks like this:
As a further example, we use lazy frame retrieval to load only a specific set of segments from a large multi-organ segmentation of a CT image in the IDC stored in binary format (in binary segmentations, each segment is stored using a separate set of frames).
Achieving good performance for the Slide Microscopy frame-level retrievals requires the presence of either a "Basic Offset Table" or "Extended Offset Table" in the file. These tables specify the starting positions of each frame within the file's byte stream. Without an offset table being present, libraries such as highdicom have to parse through the pixel data to find markers that tell it where frame boundaries are, which involves pulling down significantly more data and is therefore very slow. This mostly eliminates the potential speed benefits of frame-level retrieval. Unfortunately there is no simple way to know whether a file has an offset table without downloading the pixel data and checking it. If you find that an image takes a long time to load initially, it is probably because highdicom is constucting the offset table itself because it wasn't included in the file.
You can also check whether an image file (including pixel data) has an offset table using pydicom like this:
The (installable from pip and PyPI as google-cloud-storage
) provides a "file-like" interface allowing other Python libraries, such as Pydicom, to work with blobs as if they were "normal" files on the local filesystem.
This works because running the method on a Blob object returns a object, which has a "file-like" interface (specifically the seek
, read
, and tell
methods).
Unlike google-cloud-storage
, boto3
does not provide a file-like interface to access data in blobs. Instead, the smart_open
is a third-party package that wraps an S3 client to expose a "file-like" interface. It can be installed with pip install 'smart_open[s3]'
. However, we have found that the buffering behavior of this package (which is intended for streaming) is not well matched to the use case of reading DICOM metadata, resulting in many unnecassary requests while reading the metadata of DICOM files (see issue). Therefore while the following will work, we recommend using the approach in the above example (downloading the whole file) in most cases even if you only want to read the metadata as it will likely be much faster. The exception to this is when reading only the metadata of very large images where the total amount of pixel data dwarfs the amount of metadata (or using frame-level access to such images, see below).
You may want to look into the the other options of smart_open
's open
to improve performance (in particular the buffering
parameter).
is a higher-level library providing several features to work with images and image-derived DICOM objects. As of the release 0.25.1, its various reading methods (including , , , and ) can read any file-like object, including Google Cloud blobs and anything opened with smart_open
(including S3 blobs).
A particularly useful feature when working with blobs is for images and segmentations. This downloads only the image metadata when the file is initially loaded, uses it to create a frame-level index, and downloads specific frames as and when they are requested by the user. This is especially useful for large multiframe files (such as those found in slide microscopy or multi-segment binary or fractional segmentations) as it can significantly reduce the amount of data that needs to be downloaded to access a subset of the frames.
See page for more information on highdicom's Image
class, and page for the Segmentation
class.
Most IDC images do include an offset table, but some of the older pathology slide images do not. contains some notes about whether individual collections include offset tables.