Apollo  6.0
Open source self driving car software
image_handler.h
Go to the documentation of this file.
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/drivers/proto/sensor_image.pb.h"
28 
29 #include "CivetServer.h"
30 
35 namespace apollo {
36 namespace dreamview {
37 
44 class ImageHandler : public CivetHandler {
45  public:
46  // The scale used to resize images sent to frontend
47  static constexpr double kImageScale = 0.2;
48 
49  ImageHandler();
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
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
bool handleGet(CivetServer *server, struct mg_connection *conn)
The ImageHandler, built on top of CivetHandler, converts the received ROS image message to an image s...
Definition: image_handler.h:44
static constexpr double kImageScale
Definition: image_handler.h:47