[docs]classAnalyzer(ABC):"""Analyzes scenes and writes some output while running the analyze command. This output can be used to normalize images, for example. """
[docs]@abstractmethoddefprocess(self,scenes:list[Scene],tmp_dir:str):"""Process scenes and save result."""