(self, file_path, camera_type='color')
| 119 | cv2.imwrite(file_path, image_data) |
| 120 | |
| 121 | def process_camera_data(self, file_path, camera_type='color'): |
| 122 | img = self.get_camera_data(camera_type) |
| 123 | self.save_image(img, file_path) |
| 124 | print("Image saved") |
| 125 | |
| 126 | class UEBridge: |
| 127 | def __init__(self, ue_ip, ue_port, env_name): |
nothing calls this directly
no test coverage detected