(self, options: dict[str, str])
| 51 | """Minimal interface every engine must implement.""" |
| 52 | |
| 53 | def prepare(self, options: dict[str, str]) -> None: ... |
| 54 | def detect(self, img: np.ndarray) -> list[FaceDetection]: ... |
| 55 | def embed(self, img: np.ndarray) -> np.ndarray | None: ... |
| 56 | def analyze(self, img: np.ndarray) -> list[FaceAttributes]: ... |
no outgoing calls
no test coverage detected