I have a Parrot ANAFI Drone. I am using olympe sdk on an ubuntu computer.
I want to get some sensor values of the drone. For example roll,pitch and yaw angles or height of the drone or velocity of the drone etc.
Can I reach these drone parameters ?
def show_yuv_frame(self, window_name, yuv_frame):
# the VideoFrame.info() dictionary contains some useful information
# such as the video resolution
info = yuv_frame.info()
height, width = ( # noqa
info["raw"]["frame"]["info"]["height"],
info["raw"]["frame"]["info"]["width"],
)
# yuv_frame.vmeta() returns a dictionary that contains additional```
In the above code, yuv_frame.vmeta() gives you entire metadata.