Is Save Required: Checks if the stats have been updated since loading. Returns: bool: True if there are frame metrics/statistics not yet written to disk, False otherwise.
(self)
| 153 | return all([self._metric_exists(timecode, metric_key) for metric_key in metric_keys]) |
| 154 | |
| 155 | def is_save_required(self) -> bool: |
| 156 | """Is Save Required: Checks if the stats have been updated since loading. |
| 157 | |
| 158 | Returns: |
| 159 | bool: True if there are frame metrics/statistics not yet written to disk, |
| 160 | False otherwise. |
| 161 | """ |
| 162 | return self._metrics_updated |
| 163 | |
| 164 | def save_to_csv( |
| 165 | self, |
no outgoing calls