(self, array: NdarrayOrTensor, randomize: bool = True)
| 3529 | return super().filter_count(image_np, locations) |
| 3530 | |
| 3531 | def __call__(self, array: NdarrayOrTensor, randomize: bool = True): |
| 3532 | if randomize: |
| 3533 | self.randomize(array) |
| 3534 | return super().__call__(array) |
| 3535 | |
| 3536 | |
| 3537 | class RandSimulateLowResolution(RandomizableTransform): |