felixmn91

Results 2 comments of felixmn91

yes that's true, but only in a custom msg, not in the sensor_msgs/Imu Message

a workaround: #include "ros/ros.h" #include "std_msgs/String.h" #include #include #include #include class ImuWithOrientation { public: ImuWithOrientation(); private: void imuCallback(const sensor_msgs::Imu::ConstPtr& imu); void imuFilterCallback(const imu_3dm_gx4::FilterOutput::ConstPtr& orientation); ``` ros::NodeHandle n; ros::Subscriber sub_imu; ros::Publisher...