(
self,
keys: KeysCollection,
roi_scale: Sequence[float] | float,
allow_missing_keys: bool = False,
lazy: bool = False,
)
| 643 | """ |
| 644 | |
| 645 | def __init__( |
| 646 | self, |
| 647 | keys: KeysCollection, |
| 648 | roi_scale: Sequence[float] | float, |
| 649 | allow_missing_keys: bool = False, |
| 650 | lazy: bool = False, |
| 651 | ) -> None: |
| 652 | cropper = CenterScaleCrop(roi_scale, lazy=lazy) |
| 653 | super().__init__(keys, cropper=cropper, allow_missing_keys=allow_missing_keys, lazy=lazy) |
| 654 | |
| 655 | |
| 656 | class RandSpatialCropd(RandCropd): |
nothing calls this directly
no test coverage detected