utils
This module provides utility functions for callbacks, including mode conversion and image preprocessing.
preprocess_image(image)
Preprocess image for logging. For multiple 2D images, creates a grid. For 3D images, stacks slices vertically. For multiple 3D images, creates a grid with each column showing a different 3D image stacked vertically.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
image
|
Tensor
|
A 2D or 3D image tensor. |
required |
Returns:
Name | Type | Description |
---|---|---|
Tensor |
Tensor
|
The preprocessed image ready for logging. |