CARLA
 
载入中...
搜索中...
未找到
GBufferFloatSerializer.cpp
浏览该文件的文档.
1// Copyright (c) 2022 Computer Vision Center (CVC) at the Universitat Autonoma
2// de Barcelona (UAB).
3//
4// This work is licensed under the terms of the MIT license.
5// For a copy, see <https://opensource.org/licenses/MIT>.
6
7#include "carla/sensor/s11n/GBufferFloatSerializer.h" // 包含 GBufferFloatSerializer 的类声明
8
9#include "carla/sensor/data/Image.h" // 包含图像数据的相关定义。
10
11namespace carla {
12namespace sensor {
13namespace s11n {
14
16 auto image = SharedPtr<data::FloatImage>(new data::FloatImage{std::move(data)}); // 创建一个新的 FloatImage 对象,将输入的 RawData 移动构造为 FloatImage 数据
17 return image;// 返回 FloatImage 对象的智能指针,作为反序列化的结果
18 }
19
20} // namespace s11n
21} // namespace sensor
22} // namespace carla
包装一个传感器生成的原始数据以及一些有用的元信息。
Definition RawData.h:20
Templated image for any type of pixel.
Definition ImageTmpl.h:33
static SharedPtr< SensorData > Deserialize(RawData &&data)
CARLA模拟器的主命名空间。
Definition Carla.cpp:139
boost::shared_ptr< T > SharedPtr
使用这个SharedPtr(boost::shared_ptr)以保持与boost::python的兼容性, 但未来如果可能的话,我们希望能为std::shared_ptr制作一个Python适配器。
Definition Memory.h:19