(self, stats_name: str = DataStatsKeys.FG_IMAGE_STATS, average: bool | None = True)
| 655 | """ |
| 656 | |
| 657 | def __init__(self, stats_name: str = DataStatsKeys.FG_IMAGE_STATS, average: bool | None = True): |
| 658 | self.summary_average = average |
| 659 | |
| 660 | report_format = {ImageStatsKeys.INTENSITY: None} |
| 661 | super().__init__(stats_name, report_format) |
| 662 | self.update_ops(ImageStatsKeys.INTENSITY, SummaryOperations()) |
| 663 | |
| 664 | def __call__(self, data: list[dict]) -> dict: |
| 665 | """ |
nothing calls this directly
no test coverage detected