Dewobble
Video motion stabilization with awareness of lens projection
rotation.hpp
1 #ifndef DEWOBBLE_ROTATION_HPP
2 #define DEWOBBLE_ROTATION_HPP
3 
4 // Copied from OpenCV real time pose estimation sample
5 
6 #include <opencv2/core.hpp>
7 
8 // Converts a given Rotation Matrix to Euler angles
9 cv::Mat rotation_matrix_to_euler_angles(const cv::Mat &rotation_matrix);
10 
11 // Converts a given Euler angles to Rotation Matrix
12 cv::Mat euler_angles_to_rotation_matrix(const cv::Mat &euler_angles);
13 
14 #endif // DEWOBBLE_ROTATION_HPP