CARLA
 
载入中...
搜索中...
未找到
OpticalFlowCamera.h
浏览该文件的文档.
1#pragma once
2
4
6
7#include "OpticalFlowCamera.generated.h"
8
9/// Sensor that produces "optical flow" images.
10UCLASS()
11class CARLA_API AOpticalFlowCamera : public AShaderBasedSensor
12{
13 GENERATED_BODY()
14
15public:
16
17 static FActorDefinition GetSensorDefinition();
18
19 AOpticalFlowCamera(const FObjectInitializer &ObjectInitializer);
20
21protected:
22
23 void PostPhysTick(UWorld *World, ELevelTick TickType, float DeltaSeconds) override;
24};
Sensor that produces "optical flow" images.
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.