xmar / 360Transformations

67 stars 16 forks source link

Viewport Extraction : How can I control Yaw Pitch and roll. #26

Open ddrmorais opened 6 years ago

ddrmorais commented 6 years ago

Dear all,

    Once I have the input file (any file .mp4), I have extracted the viewports from the projected sphere in the plane.
I have used the following command:

trans -c Config_7.ini

However, the yaw pitch and roll are fixed for all frames. I can not control these parameters in each frame.

I need to control the yaw, pitch and roll in each frame.

For exameple, imagine a have 5 frames

Frame 1
rotation= {"type":"euler", "yaw":0.0, "pitch":0.0, "roll":0.0}

Frame 2
rotation= {"type":"euler", "yaw":10.0, "pitch":0.0, "roll":0.0}

Frame 3
rotation= {"type":"euler", "yaw":20.0, "pitch":0.0, "roll":0.0}

Frame 4
rotation= {"type":"euler", "yaw":30.0, "pitch":0.0, "roll":0.0}

Frame 5
rotation= {"type":"euler", "yaw":40.0, "pitch":0.0, "roll":0.0}

Is it possible to do it in this library?

Regards,

Dario