def state(self): """Get the current camera state. Returns: A CameraState instance """ return _camera_state_converter.to_camera_state(self.__impl.state)
def state(self): """Get the camera state data at the time of the frame capture. Returns: A CameraState instance """ return _camera_state_converter.to_camera_state(self.__impl.state)
def state(self): """Get the camera state data at the time of the frame capture. Returns: a camera state instance """ return _camera_state_converter.to_camera_state( # pylint: disable=protected-access self.__impl.state)