(self)
| 54 | frame_shape: tuple[int, int] = (480, 640) |
| 55 | |
| 56 | def bodyparts(self) -> list[str]: |
| 57 | return [i for i in string.ascii_lowercase[: self.num_bodyparts]] |
| 58 | |
| 59 | def unique(self) -> list[str]: |
| 60 | return [f"unique_{i}" for i in string.ascii_lowercase[: self.num_unique]] |
no outgoing calls
no test coverage detected