Transform
Identity #
Bases: FrozenBase
An identity transform. It has no parameters other than type
, and no valid use according to the spec.
See https://ngff.openmicroscopy.org/0.4/#trafo-md for the specification of this data structure.
Attributes:
Name | Type | Description |
---|---|---|
type |
Literal['identity']
|
The string "identity". |
PathTranslation #
Bases: FrozenBase
A translation transformation with a path
field. The spec states that path
should resolve to "binary data".
See https://ngff.openmicroscopy.org/0.4/#trafo-md for the specification of this data structure.
Attributes:
Name | Type | Description |
---|---|---|
type |
Literal['translation']
|
The string "translation". |
path |
str
|
A string reference to something that can be interpreted as defining a translation transformation. |
PathScale #
Bases: FrozenBase
A scaling transformation with a path
field. The spec states that path
should resolve to "binary data".
See https://ngff.openmicroscopy.org/0.4/#trafo-md for the specification of this data structure.
Attributes:
Name | Type | Description |
---|---|---|
type |
Literal['scale']
|
The string "scale". |
path |
str
|
A string reference to something that can be interpreted as defining a scaling transformation. |
VectorTranslation #
Bases: FrozenBase
A translation transformation defined by a sequence of numbers.
See https://ngff.openmicroscopy.org/0.4/#trafo-md for the specification of this data structure.
Attributes:
Name | Type | Description |
---|---|---|
type |
Literal['translation']
|
The string "translation". |
translation |
tuple[float | int]
|
A sequence of numbers that define an N-dimensional translation transformation. |
VectorScale #
Bases: FrozenBase
A scaling transformation defined by a sequence of numbers.
See https://ngff.openmicroscopy.org/0.4/#trafo-md for the specification of this data structure.
Attributes:
Name | Type | Description |
---|---|---|
type |
Literal['scale']
|
The string "scale". |
scale |
tuple[float | int]
|
A sequence of numbers that define an N-dimensional scaling transformation. |
ndim #
Get the dimensionality of a scale or translation transform.
Source code in src/pydantic_ome_ngff/v04/transform.py
scale_translation #
Create a VectorScale
and a VectorTranslation
from a scale and a translation
parameter.
Source code in src/pydantic_ome_ngff/v04/transform.py
ensure_dimensionality #
Ensures that the elements in the input sequence define transformations with identical dimensionality.
Source code in src/pydantic_ome_ngff/v04/transform.py
array_transform_consistency #
Check if an array is consistent, in terms of dimensionality, with a collection of transforms.