common_msgs/sensor_msgs/include/sensor_msgs/CompressedImage.h
2025-11-06 17:01:17 +07:00

19 lines
387 B
C++

#pragma once
#include <string>
#include <vector>
#include "std_msgs/Header.h"
namespace sensor_msgs
{
struct CompressedImage
{
std_msgs::Header header; // Thông tin thời gian & frame_id
std::string format; // Định dạng nén (jpeg, png, ...)
// Dữ liệu ảnh nén (binary buffer)
std::vector<uint8_t> data;
};
} // namespace sensor_msgs