Agrarsense
SensorTypes.h
Go to the documentation of this file.
1// Copyright (c) 2023 FrostBit Software Lab at the Lapland University of Applied Sciences
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
8#include "CoreMinimal.h"
9
13UENUM(BlueprintType)
14enum class ESensorTypes : uint8
15{
16 // DO NOTE THAT THE TYPES ARE NOT IN ORDER BY NUMBER! YOU CAN CHANGE THE ORDER BUT DO NOT CHANGE THE NUMBERS!
17 NONE = 0 UMETA(DisplayName = "NONE"),
18 Lidar = 1 UMETA(DisplayName = "Lidar"),
19 RGBCamera = 2 UMETA(DisplayName = "RGBCamera"),
20 ThermalCamera = 3 UMETA(DisplayName = "ThermalCamera"),
21 DVSCamera = 6 UMETA(DisplayName = "DVSCamera"),
22 DepthCamera = 7 UMETA(DisplayName = "DepthCamera"),
23 SemanticSegmentationCamera = 8 UMETA(DisplayName = "SemanticSegmentationCamera"),
24 Radar = 4 UMETA(DisplayName = "Radar"),
25 Collision = 5 UMETA(DisplayName = "Collision"),
26 Transform = 9 UMETA(DisplayName = "Transform"),
27 Overlap = 10 UMETA(DisplayName = "Overlap")
28
29};
ESensorTypes
Definition: SensorTypes.h:15
@ SemanticSegmentationCamera