(
self, keys: KeysCollection, roi_size: Sequence[int] | int, allow_missing_keys: bool = False, lazy: bool = False
)
| 618 | """ |
| 619 | |
| 620 | def __init__( |
| 621 | self, keys: KeysCollection, roi_size: Sequence[int] | int, allow_missing_keys: bool = False, lazy: bool = False |
| 622 | ) -> None: |
| 623 | cropper = CenterSpatialCrop(roi_size, lazy=lazy) |
| 624 | super().__init__(keys, cropper=cropper, allow_missing_keys=allow_missing_keys, lazy=lazy) |
| 625 | |
| 626 | |
| 627 | class CenterScaleCropd(Cropd): |
nothing calls this directly
no test coverage detected