CARLA
 
载入中...
搜索中...
未找到
DepthCamera.h
浏览该文件的文档.
1// Copyright (c) 2017 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#pragma once
8
10
12
13#include "DepthCamera.generated.h"
14
15/// Sensor that produces "depth" images.
16UCLASS()
17class CARLA_API ADepthCamera : public AShaderBasedSensor
18{
19 GENERATED_BODY()
20
21public:
22
23 static FActorDefinition GetSensorDefinition();
24
25 ADepthCamera(const FObjectInitializer &ObjectInitializer);
26
27protected:
28
29 void PostPhysTick(UWorld *World, ELevelTick TickType, float DeltaSeconds) override;
30};
Sensor that produces "depth" images.
Definition DepthCamera.h:18
A sensor that produces data by applying post-process materials (shaders) to a scene capture image.
A definition of a Carla Actor with all the variation and attributes.