(self, spatial_dim: int = 0, *args: Any, **kwargs: Any)
| 764 | """ |
| 765 | |
| 766 | def __init__(self, spatial_dim: int = 0, *args: Any, **kwargs: Any) -> None: |
| 767 | self.spatial_dim = spatial_dim |
| 768 | super().__init__(*args, **kwargs) |
| 769 | self.orig_roi_size = ensure_tuple(self.roi_size) |
| 770 | |
| 771 | def __call__( |
| 772 | self, |
nothing calls this directly
no test coverage detected