Description
Lazy resampling (fusing spatial transforms)
Is your feature request related to a problem? Please describe.
Follow up of #4198, #112, when there are various spatial transforms such as Spacing
RandZoom
being used in Compose
, automatically fusing them to run one step resampling would speed up the process and reduce the resampling errors by repeated resamplings.
Introduction
Lazy resampling (or fusing spatial transforms) is a feature that aims to eliminate unnecessary resample steps from preprocessing pipelines containing multiple spatial transforms. It does so by composing those steps in a manner that reflects established best practice from the world of graphics libraries.
The goal is that this functionality is incorporated into the implementation of Compose
and the spatial transforms themselves, so that a user can get the benefit of this feature in a way that is completely compatible code-wise with previous versions of MONAI.
Historically speaking, this functionality has existed only within the scope of Affine
and Affined
, which enable multiple affine transforms in a predetermined order within a single transform, in #112.
Benefits
Lazy resampling has the following benefits:
- It improves the efficiency of a preprocessing pipeline in terms of memory and time, particularly the latter
- It improves the quality of the resulting images, reducing issues with padding
- It enables reordering of pipelines to simplify reasoning about pipelines#5249
- It enables simpler implementations of transforms
PRs related to this feature
Some PRs have already been merged to dev for use by the ongoing development branches / forks:
- MetaTensor changes: 4922 adding a minimal lazy transform interface #5407 / 4855 5860 update the pending transform utilities #5916
- Interfaces / base classes: 4922 adding a minimal lazy transform interface #5407 / Type classes for lazy resampling #5418
- Apply: Replacement Apply and Resample #5436 / 4855 5860 update the pending transform utilities #5916
- Consolidated resample (minimal): Replacement Apply and Resample #5436 / 4855 5860 update the pending transform utilities #5916
There are two development efforts going on toward this feature:
- 4855 lazy resampling impl -- Compose #5860
- This PR contains work to build an early experimental feature set to release as soon as possible
- Transforms made lazy and refactored into functions
- Spatial
- CropPad
- Consolidated resample (full)
- Caching / Persistent datasets
- Transforms made lazy and refactored into functions
- This PR contains work to build an early experimental feature set to release as soon as possible
- https://github.com/Project-MONAI/MONAI/tree/lr_development
- This branch contains a deeper refactor of the spatial transforms and a set of additional refactors:
- Functional transforms and supporting functionality that decouple transform state from transform execution
- Spatial
- Functions
- Array classes
- Dictionary classes
- Invert
- CropPad
- Functions
- Array classes
- Dictionary classes
- Invert
- Spatial
- Compose & compose compiler
- Core functionality
- OneOf / RandomOrder refactor
- Consolidated resample (full)
- Caching / Persistent datasets
- Compose compiler and compose changes
- Consolidated resample (full)
- Affine matrix categorisation
- Affine matrix parameter extraction
- Interpolate path
- Affine matrix resample path
- Affine grid resample path
- Caching / Persistent datasets
- Functional transforms and supporting functionality that decouple transform state from transform execution
- This branch contains a deeper refactor of the spatial transforms and a set of additional refactors:
There are two original PRs relating to this feature, but these will not be merged as is, but rather cherry picked from in order
to implement the above PRs:
- [Prototype] 4855 compose with lazy resampling #4911 is a minimal modification to the existing code-base that seeks to enable the feature without a major modification to the way that transforms are implemented
- [Early WIP] - Lazy resampling #4922 is a major refactor that seeks to re-implement spatial transforms in a simplified manner, along with a more extensively refactored Compose to consolidate areas of the code that manipulate transform pipelines (such as
CachedDataset
)
Impact on codebase
Transforms
All spatial transforms must be modified to be resampling aware. This can be done in a minimal way (#4911) or in a more extensive way (#4922) that decouples the transform itself from the resulting resample operation.
Compose
Compose
must be modified to handle lazy resampling although thee are a number of ways this can be achieved
Resample (optional)
Resample can optionally be modified in order to reduce the complexity of spatial transforms, according to #5010. This allows all spatial transforms to be implemented in terms of a description of the transform while still being able to take advantage of lower-cost resampling techniques when possible.
Complications
Performing lazy resampling across multiple transforms adds some feature complexity that must be understood and overcome:
- Modifications to Compose
- Parameter compatibility
- Other code that modifies the transform list
- Dataset caching
- Processing the inverse
- Histogram-sampling transforms
- Multi-sample transforms
- Compiled transforms
Modifications to Compose
The goal with this functionality as that the user should not need to alter existing code in order for lazy resampling to work; i.e. that it should be the default behaviour moving forward. As such, additional work must be done behind the scenes in order for a pipeline to be lazily executed. This can manifest in code in a number of different ways:
- Modification to
Compose
: Compose can have the concept of lazy evaluation built into it, so that if it determines that there are one or more transforms capable of lazy execution, that it causes resampling to occur in the appropriate locations - Introduction of Pipeline Compilation: A pipeline compiler that takes a list of transforms and generates an augmented / modified list of transforms that can be executed in its place. This approach might consolidate other places in the codebase that execute a modified list of transforms (see below).
Parameter compatibility
There are multiple parameters that can be set across most spatial transforms, such as mode
, padding_mode
and dtype
. If these are incompatible between transforms, then resampling must happen immediately rather than deferring it to later in the pipeline.
Other code that modifies the transform list
There are a number of features that cause a list of transforms to be modified before / during their execution:
- Dataset caching:
CachedDataset
andPersistentDataset
both implement a scheme whereby deterministic transforms that happen before the initial randomized transform are cached to memory / drive, and skipped subsequently - Inverse: Inverting the transforms runs the transforms backwards using the
invert
method rather than__call__
With the need for lazy resampling to also execute a modified list of transforms, there is significant potential for clashes if these list altering mechanisms aren't designed to work with each other.
Histogram-sampling transforms
Some transforms perform patch-based sampling given histograms of data; typically labels that accompany image or volume data. This might require an immediate resample for if the patch based transform follows other spatial transforms, but this resample may then subsequently be thrown out in favour of a single true resample step at the end of the spatial transforms.
Multi-sample transforms
Some transforms allow for multiple samples to be performed, such as when multiple random patches are selected from a data sample. Lazy resampling causes complications relating to MetaTensor
, as there isn't strictly speaking a need for a new metatensor instance until resampling occurs, but MetaTensor
is not designed to hold multiple sets of pending transforms. There are several ways that this can be handled:
- Run each sample through the pipeline to the point where resampling occurs in a depth first manner
- Modify
MetaTensor
to handle arrays of pending transforms - Allow
MetaTensor
instances to share (in a read only fashion) the underlying tensor data between multiple meta tensor instances. This is currently the preferred approach
Compiled transforms
If pipeline compilation is chosen, it will be necessary to write new transforms that implement the modified behaviour. These include:
- Transforms that check for cached data and execute if that cached data is not present. These will typically contain a set of transforms from the original pipeline.
Apply
/Applyd
required to execute lazy resampling