(engine: CorridorKeyEngine)
| 7 | |
| 8 | |
| 9 | def process_frame(engine: CorridorKeyEngine): |
| 10 | img = np.random.randint(0, 255, (2160, 3840, 3), dtype=np.uint8) |
| 11 | mask = np.random.randint(0, 255, (2160, 3840), dtype=np.uint8) |
| 12 | |
| 13 | engine.process_frame(img, mask) |
| 14 | |
| 15 | |
| 16 | def batch_process_frame(engine: CorridorKeyEngine, batch_size: int): |
nothing calls this directly
no test coverage detected