CARLA
OpticalFlowCamera.h
Go to the documentation of this file.
1 #pragma once
2 
4 
6 
7 #include "OpticalFlowCamera.generated.h"
8 
9 /// Sensor that produces "optical flow" images.
10 UCLASS()
11 class CARLA_API AOpticalFlowCamera : public AShaderBasedSensor
12 {
13  GENERATED_BODY()
14 
15 public:
16 
17  static FActorDefinition GetSensorDefinition();
18 
19  AOpticalFlowCamera(const FObjectInitializer &ObjectInitializer);
20 
21 protected:
22 
23  void PostPhysTick(UWorld *World, ELevelTick TickType, float DeltaSeconds) override;
24 };
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.
Sensor that produces "optical flow" images.