(self, file_path, camera_type='lit')
| 258 | cv2.imwrite(file_path, image_data) |
| 259 | |
| 260 | def process_camera_data(self, file_path, camera_type='lit'): |
| 261 | img = self.get_camera_data(camera_type) |
| 262 | self.save_image(img, file_path) |
| 263 | |
| 264 | class GSBridge: |
| 265 | def __init__(self, env_name): |
nothing calls this directly
no test coverage detected