Agrarsense
DepthCameraParameters.h
Go to the documentation of this file.
1// Copyright (c) 2024 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
9
10#include "DepthCameraParameters.generated.h"
11
12USTRUCT(Blueprintable)
13struct AGRARSENSE_API FDepthCameraParameters
14{
15 GENERATED_BODY()
16
17 /*
18 * Should image be converted to Grayscale.
19 */
20 UPROPERTY(EditAnywhere, BlueprintReadWrite)
21 bool ConvertToGrayscale = false;
22
23 /*
24 * Camera parameters
25 */
26 UPROPERTY(EditAnywhere, BlueprintReadWrite)
27 FCameraBaseParameters CameraParameters;
28};