Mediapipe face rotate. Help

First of all, I’m using a translator, so my English may not be accurate. I’m using a media pipe, and I want to change the rotation value of an object depending on the tilt of the face, what should I do? Does anyone know the media pipe function well?

Hi @50teklove,

Have a look at the example file that @blankensmithing is providing with the mediapipe component. Especially at the network called “face_filter_example” where the first CHOP output of the “face_tracking” network is used to transform a geometry.

This first output has 16 channels representing a transformation matrix. You can extract the rotation values from it by appending a Transform CHOP. Now you will see 11 channels for translate, rotate, and scale from which you can pick any required rotation channel as you need it.

Hope this helps a bit
cheers
Markus