| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from .transform import Transform |
||
| 2 | |||
| 3 | class SpatialTransform(Transform): |
||
| 4 | """Transform that modifies image bounds or voxels positions.""" |
||
| 5 | @staticmethod |
||
| 6 | def get_images(sample): |
||
| 7 | return sample.get_images(intensity_only=False) |
||
| 8 | |||
| 9 | @staticmethod |
||
| 10 | def get_images_dict(sample): |
||
| 11 | return sample.get_images_dict(intensity_only=False) |
||
| 12 |