Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我QImage在 ROS 的“Select_Object”节点中有一个。
QImage
如何QImage在不使用 OpenCV 的情况下将其转换为 ROS 图像格式?
QImage允许您使用QImage::convertToFormat设置格式。然后您可以使用QImage::constBits获取原始数据。
因此,您需要做的就是将格式设置为 ROS 可以使用的格式,然后获取原始数据。
这是所有可用格式的列表。