You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I want to ask a question about pose estimation head. Does this program calculates the values of pitch, yaw, and roll? If so, how do you get these three values ? I got these three values through the code.
(std::cout << "Yaw : " << face_pose->yaw_180.0 / 3.14 << std::endl;
std::cout << " Pitch : " << face_pose->pitch_180.0 / 3.14 <<std::endl;
std::cout<< " Roll : " << face_pose->symm_x*180.0 / 3.14 << std::endl;)
But I found that the value of roll is greater than 5000 .It is so strange ! Could you give me a suggestion ?
The text was updated successfully, but these errors were encountered:
The values yaw, pitch & roll are in degrees. That "cout" statement was inserted when I debugged. Just remove the conversion factor. Values are in degrees.
To avoid further confusion, I made a python port of the above functionality. It includes detection & face-pose estimation. Will add gaze computation soon :)
Hi,
I want to ask a question about pose estimation head. Does this program calculates the values of pitch, yaw, and roll? If so, how do you get these three values ? I got these three values through the code.
(std::cout << "Yaw : " << face_pose->yaw_180.0 / 3.14 << std::endl;
std::cout << " Pitch : " << face_pose->pitch_180.0 / 3.14 <<std::endl;
std::cout<< " Roll : " << face_pose->symm_x*180.0 / 3.14 << std::endl;)
But I found that the value of roll is greater than 5000 .It is so strange ! Could you give me a suggestion ?
The text was updated successfully, but these errors were encountered: