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
// Image is too new; continue to next image, which is older
175
+
ROS_DEBUG_STREAM_DELAYED_THROTTLE_NAMED(10, "image_buffer", "[IMAGE_BUFFER] Image too new to look-up tf: image timestamp: " << std::fixed << ros::Time(rgbd_image->getTimestamp()) << ", what: " << ex.what());
176
+
continue;
177
+
}
178
+
}
179
+
catch (tf::TransformException& ex)
180
+
{
181
+
ROS_ERROR_DELAYED_THROTTLE_NAMED(10, "image_buffer", "[IMAGE_BUFFER] Could not get latest sensor pose (probably because tf is still initializing): %s", ex.what());
182
+
ROS_WARN_NAMED("image_buffer", "[IMAGE_BUFFER] Could not get latest sensor pose (probably because tf is still initializing): %s", ex.what());
183
+
continue;
174
184
}
175
185
}
176
-
catch(tf::TransformException& exc)
186
+
catch(tf::TransformException& ex)
177
187
{
178
-
ROS_ERROR_DELAYED_THROTTLE(10, "[IMAGE_BUFFER] Could not get latest sensor pose (probably because tf is still initializing): %s", ex.what());
179
-
ROS_WARN("[IMAGE_BUFFER] Could not get latest sensor pose (probably because tf is still initializing): %s", ex.what());
180
-
returnfalse;
188
+
ROS_ERROR_DELAYED_THROTTLE_NAMED(10, "image_buffer", "[IMAGE_BUFFER] Could not get sensor pose: %s", ex.what());
189
+
ROS_WARN_NAMED("image_buffer", "[IMAGE_BUFFER] Could not get sensor pose: %s", ex.what());
190
+
continue;
181
191
}
182
-
}
183
-
catch(tf::TransformException& ex)
184
-
{
185
-
ROS_ERROR_DELAYED_THROTTLE(10, "[IMAGE_BUFFER] Could not get sensor pose: %s", ex.what());
186
-
ROS_WARN("[IMAGE_BUFFER] Could not get sensor pose: %s", ex.what());
187
-
returnfalse;
188
-
}
189
192
190
-
// Convert from ROS coordinate frame to geolib coordinate frame
0 commit comments