CARLA
Unreal/CarlaUE4/Plugins/Carla/Source/Carla/Sensor/LaneInvasionSensor.h
Go to the documentation of this file.
1 // Copyright (c) 2019 Intel Labs.
2 //
3 // This work is licensed under the terms of the MIT license.
4 // For a copy, see <https://opensource.org/licenses/MIT>.
5 
6 #pragma once
7 
9 
11 
12 #include "LaneInvasionSensor.generated.h"
13 
14 /// LaneInvasion sensor representation
15 /// The actual position calculation is done one client side
16 UCLASS()
17 class CARLA_API ALaneInvasionSensor : public ASensor
18 {
19  GENERATED_BODY()
20 
21 public:
22 
23  static FActorDefinition GetSensorDefinition();
24 
25  ALaneInvasionSensor(const FObjectInitializer &ObjectInitializer);
26 };
LaneInvasion sensor representation The actual position calculation is done one client side...
A definition of a Carla Actor with all the variation and attributes.