Can't rotate video in gstreamer yolo pose_estimation example

Hello,

Using picamera as input, I am trying to rotate the video input to the yolo pose model in pose_estimation.py. I have tried adding videoflip method=rotate-180 in many places but doesn’t seem to work. Can you help me with that? Also can you give an estimated timeline of when the python api for hailo will be released.

Thank you

Welcome to the Hailo Community!

I see the same issue.

As a workaround you can use the rotate element. That seems to work. The angle is in radians. I added the following line just before the videoscale.

source_element += f"rotate angle=3.14159 ! "
1 Like