通过ros系统中websocket中发送sensor_msgs::Image数据给web端显示(一)
文章来源:https://www.toymoban.com/news/detail-811077.html
图片数据转成base64编码方式文章来源地址https://www.toymoban.com/news/detail-811077.html
#include <ros/ros.h>
#include <signal.h>
#include <sensor_msgs/Image.h>
#include <message_filters/subscriber.h>
#include <message_filters/synchronizer.h>
#include <message_filters/time_synchronizer.h>
#include <functional>
#include <websocketpp/config/asio_no_tls.hpp>
#include <websocketpp/server.hpp>
#include <iostream>
#include <chrono>// 头文件用于时间相关操作
#include <thread>
#include <unordered_set>
#include <memory>
#include <opencv2/core.hpp>
#include <opencv2/opencv.hpp>
#include <cv_bridge/cv_bridge.h>
#include <boost/thread.hpp>
#include <std_msgs/String.h>
#include <future>
using namespace std;
class WebSocketServer {
pr
到了这里,关于通过ros系统中websocket中发送sensor_msgs::Image数据给web端显示的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!