(self, data: Mapping[Hashable, NdarrayOrTensor])
| 825 | self.normalizer = NormalizeIntensity(subtrahend, divisor, nonzero, channel_wise, dtype) |
| 826 | |
| 827 | def __call__(self, data: Mapping[Hashable, NdarrayOrTensor]) -> dict[Hashable, NdarrayOrTensor]: |
| 828 | d = dict(data) |
| 829 | for key in self.key_iterator(d): |
| 830 | d[key] = self.normalizer(d[key]) |
| 831 | return d |
| 832 | |
| 833 | |
| 834 | class ThresholdIntensityd(MapTransform): |
nothing calls this directly
no test coverage detected