(self, spatial_axis: Sequence[int] | int | None = None, lazy: bool = False)
| 726 | backend = [TransformBackends.TORCH] |
| 727 | |
| 728 | def __init__(self, spatial_axis: Sequence[int] | int | None = None, lazy: bool = False) -> None: |
| 729 | LazyTransform.__init__(self, lazy=lazy) |
| 730 | self.spatial_axis = spatial_axis |
| 731 | |
| 732 | def __call__(self, img: torch.Tensor, lazy: bool | None = None) -> torch.Tensor: |
| 733 | """ |
no outgoing calls
no test coverage detected