ainrichman / Peppa-Facial-Landmark-PyTorch

Facial Landmark Detection based on PyTorch
Apache License 2.0
211 stars 56 forks source link

How Did you get Headpose(Yaw, pitch, roll) from AFLW200 & 300W ?? #19

Open Susiehub opened 2 years ago

Susiehub commented 2 years ago

I have downloaded the data bases. I am trying to process the data and labels. I don't understand where did you get Euler head pose from these datasets.?

For example, I checked one of the .mat file given for a sample. It has a pose_param with 1x7 array. How to get Euler's from here ? 0.085767917 -0.095569924 0.075868770 220.44441 167.35301 -100.53674 0.0012647437

chau25102001 commented 1 year ago

I have downloaded the data bases. I am trying to process the data and labels. I don't understand where did you get Euler head pose from these datasets.?

For example, I checked one of the .mat file given for a sample. It has a pose_param with 1x7 array. How to get Euler's from here ? 0.085767917 -0.095569924 0.075868770 220.44441 167.35301 -100.53674 0.0012647437

The first 3 values are pitch, yaw, and roll in radian, you can get the degree values by multiply them with 180 and devide by pi

ainrichman commented 1 year ago

I have downloaded the data bases. I am trying to process the data and labels. I don't understand where did you get Euler head pose from these datasets.?

For example, I checked one of the .mat file given for a sample. It has a pose_param with 1x7 array. How to get Euler's from here ? 0.085767917 -0.095569924 0.075868770 220.44441 167.35301 -100.53674 0.0012647437

Hello, As @chau25102001 mentioned, the first 3 values are what you are seeking for.