Apollo 10.0
自动驾驶开放平台
image_handler.h
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2017 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
21#pragma once
22
23#include <memory>
24#include <vector>
25
26#include "cyber/cyber.h"
27#include "modules/common_msgs/sensor_msgs/sensor_image.pb.h"
28
29#include "CivetServer.h"
30
35namespace apollo {
36namespace dreamview {
37
44class ImageHandler : public CivetHandler {
45 public:
46 // The scale used to resize images sent to frontend
47 static constexpr double kImageScale = 0.2;
48
50
51 bool handleGet(CivetServer *server, struct mg_connection *conn);
52
53 private:
54 template <typename SensorMsgsImage>
55 void OnImage(const std::shared_ptr<SensorMsgsImage> &image);
56
57 void OnImageFront(const std::shared_ptr<apollo::drivers::Image> &image);
58 void OnImageShort(
59 const std::shared_ptr<apollo::drivers::CompressedImage> &image);
60
61 std::vector<uint8_t> send_buffer_;
62 std::atomic<int> requests_;
63
64 // mutex lock and condition variable to protect the received image
65 std::mutex mutex_;
66 std::condition_variable cvar_;
67
68 std::unique_ptr<cyber::Node> node_;
69};
70
71} // namespace dreamview
72} // namespace apollo
The ImageHandler, built on top of CivetHandler, converts the received ROS image message to an image s...
bool handleGet(CivetServer *server, struct mg_connection *conn)
static constexpr double kImageScale
class register implement
Definition arena_queue.h:37