Returns a list of all metric names/keys used by this detector. Returns: List of strings of frame metric key names that will be used by the detector when a StatsManager is passed to process_frame.
(self)
| 94 | self._stats_manager = value |
| 95 | |
| 96 | def get_metrics(self) -> list[str]: |
| 97 | """Returns a list of all metric names/keys used by this detector. |
| 98 | |
| 99 | Returns: |
| 100 | List of strings of frame metric key names that will be used by |
| 101 | the detector when a StatsManager is passed to process_frame. |
| 102 | """ |
| 103 | return [] |
| 104 | |
| 105 | |
| 106 | class FlashFilter: |