77 std::string add_transform_xyz_rpy =
"0,0,0,0,0,0";
79 rosGetParam(nh,
"add_transform_xyz_rpy", add_transform_xyz_rpy);
80 bool add_transform_check_dynamic_updates =
false;
81 rosDeclareParam(nh,
"add_transform_check_dynamic_updates", add_transform_check_dynamic_updates);
82 rosGetParam(nh,
"add_transform_check_dynamic_updates", add_transform_check_dynamic_updates);
83 if (!
init(add_transform_xyz_rpy, cartesian_input_only, add_transform_check_dynamic_updates))
85 ROS_ERROR_STREAM(
"## ERROR SickCloudTransform(): Initialization by \"" << add_transform_xyz_rpy <<
"\" failed, use 6D pose \"x,y,z,roll,pitch,yaw\" in [m] resp. [rad]");
92 if (!
init(add_transform_xyz_rpy, cartesian_input_only, add_transform_check_dynamic_updates))
94 ROS_ERROR_STREAM(
"## ERROR SickCloudTransform(): Initialization by \"" << add_transform_xyz_rpy <<
"\" failed, use 6D pose \"x,y,z,roll,pitch,yaw\" in [m] resp. [rad]");
103 if(config_values.size() != 6)
105 ROS_ERROR_STREAM(
"## ERROR SickCloudTransform(): Can't parse config string \"" << add_transform_xyz_rpy <<
"\", use 6D pose \"x,y,z,roll,pitch,yaw\" in [m] resp. [rad]");
108 m_translation_vector[0] = config_values[0];
109 m_translation_vector[1] = config_values[1];
110 m_translation_vector[2] = config_values[2];
111 m_apply_3x3_rotation =
false;
112 m_rotation_matrix = { 1, 0, 0, 0, 1, 0, 0, 0, 1 };
113 m_azimuth_offset = 0;
114 if (cartesian_input_only)
116 if (fabs(config_values[3]) > FLT_EPSILON || fabs(config_values[4]) > FLT_EPSILON || fabs(config_values[5]) > FLT_EPSILON)
118 m_apply_3x3_rotation =
true;
119 m_rotation_matrix = eulerToRot3x3(config_values[3], config_values[4], config_values[5]);
124 if (fabs(config_values[3]) < FLT_EPSILON && fabs(config_values[4]) < FLT_EPSILON)
128 m_apply_3x3_rotation =
false;
129 m_rotation_matrix = { 1, 0, 0, 0, 1, 0, 0, 0, 1 };
130 m_azimuth_offset = config_values[5];
134 m_apply_3x3_rotation =
true;
135 m_rotation_matrix = eulerToRot3x3(config_values[3], config_values[4], config_values[5]);
136 m_azimuth_offset = 0;
140 m_add_transform_xyz_rpy = add_transform_xyz_rpy;
141 m_cartesian_input_only = cartesian_input_only;
142 m_add_transform_check_dynamic_updates = add_transform_check_dynamic_updates;
143 ROS_INFO_STREAM(
"SickCloudTransform: add_transform_xyz_rpy = (" << add_transform_xyz_rpy <<
")");
144 ROS_INFO_STREAM(
"SickCloudTransform: azimuth_offset = " << (m_azimuth_offset * 180.0 / M_PI) <<
" [deg]");
145 ROS_INFO_STREAM(
"SickCloudTransform: additional 3x3 rotation matrix = { ("
146 << m_rotation_matrix[0][0] <<
"," << m_rotation_matrix[0][1] <<
"," << m_rotation_matrix[0][2] <<
"), ("
147 << m_rotation_matrix[1][0] <<
"," << m_rotation_matrix[1][1] <<
"," << m_rotation_matrix[1][2] <<
"), ("
148 << m_rotation_matrix[2][0] <<
"," << m_rotation_matrix[2][1] <<
"," << m_rotation_matrix[2][2] <<
") }");
149 ROS_INFO_STREAM(
"SickCloudTransform: apply 3x3 rotation = " << (m_apply_3x3_rotation ?
"true" :
"false"));
150 ROS_INFO_STREAM(
"SickCloudTransform: additional translation = (" << m_translation_vector[0] <<
"," << m_translation_vector[1] <<
"," << m_translation_vector[2] <<
")");
151 ROS_INFO_STREAM(
"SickCloudTransform: check_dynamic_updates = " << (m_add_transform_check_dynamic_updates ?
"true" :
"false"));
161 0, cosf(roll), -sinf(roll),
162 0, sinf(roll), cosf(roll)
166 cosf(pitch), 0, sinf(pitch),
168 -sinf(pitch), 0, cosf(pitch)
172 cosf(yaw), -sinf(yaw), 0,
173 sinf(yaw), cosf(yaw), 0,
177 Matrix3x3 rot_3x3 = multiply3x3(multiply3x3(rot_z, rot_y), rot_x);
186 a[0][0] * b[0][0] + a[0][1] * b[1][0] + a[0][2] * b[2][0],
187 a[0][0] * b[0][1] + a[0][1] * b[1][1] + a[0][2] * b[2][1],
188 a[0][0] * b[0][2] + a[0][1] * b[1][2] + a[0][2] * b[2][2],
190 a[1][0] * b[0][0] + a[1][1] * b[1][0] + a[1][2] * b[2][0],
191 a[1][0] * b[0][1] + a[1][1] * b[1][1] + a[1][2] * b[2][1],
192 a[1][0] * b[0][2] + a[1][1] * b[1][2] + a[1][2] * b[2][2],
194 a[2][0] * b[0][0] + a[2][1] * b[1][0] + a[2][2] * b[2][0],
195 a[2][0] * b[0][1] + a[2][1] * b[1][1] + a[2][2] * b[2][1],
196 a[2][0] * b[0][2] + a[2][1] * b[1][2] + a[2][2] * b[2][2]