Add a single frame to output.
(self, image: torch.Tensor, depth: torch.Tensor)
| 171 | """Protocol for writing output to disk.""" |
| 172 | |
| 173 | def add_frame(self, image: torch.Tensor, depth: torch.Tensor) -> None: |
| 174 | """Add a single frame to output.""" |
| 175 | ... |
| 176 | |
| 177 | def close(self) -> None: |
| 178 | """Finish writing.""" |
nothing calls this directly
no outgoing calls
no test coverage detected