Compare commits

...

2 Commits

Author SHA1 Message Date
0313fe6aa2 update some msgs 2026-07-13 14:46:03 +07:00
b9d5ec0f60 add new msgs 2026-07-13 14:23:45 +07:00
3 changed files with 28 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <memory> #include <memory>
#include <boost/shared_ptr.hpp>
namespace robot_protocol_msgs namespace robot_protocol_msgs
{ {

View File

@@ -10,6 +10,7 @@
#include <vector> #include <vector>
#include <memory> #include <memory>
#include <boost/shared_ptr.hpp> #include <boost/shared_ptr.hpp>
#include <boost/array.hpp>
#include <robot_std_msgs/Header.h> #include <robot_std_msgs/Header.h>
#include <robot_sensor_msgs/RegionOfInterest.h> #include <robot_sensor_msgs/RegionOfInterest.h>

View File

@@ -0,0 +1,26 @@
#ifndef ROBOT_SENSOR_MSGS_MESSAGE_DEPTHCAMERADATA_H
#define ROBOT_SENSOR_MSGS_MESSAGE_DEPTHCAMERADATA_H
#include <boost/array.hpp>
#include <boost/shared_ptr.hpp>
#include <robot_sensor_msgs/CameraInfo.h>
#include <robot_sensor_msgs/Image.h>
#include <robot_std_msgs/Header.h>
namespace robot_sensor_msgs
{
struct DepthCameraData
{
// Canonical timestamp and optical frame for this coherent depth sample.
robot_std_msgs::Header header;
robot_sensor_msgs::Image depth;
robot_sensor_msgs::CameraInfo camera_info;
typedef boost::shared_ptr<robot_sensor_msgs::DepthCameraData> Ptr;
typedef boost::shared_ptr<const robot_sensor_msgs::DepthCameraData> ConstPtr;
};
} // namespace robot_sensor_msgs
#endif // ROBOT_SENSOR_MSGS_MESSAGE_DEPTHCAMERADATA_H