aboutsummaryrefslogtreecommitdiff
path: root/samples/common/include/Utils/Types.hpp
diff options
context:
space:
mode:
authorÉanna Ó Catháin <eanna.ocathain@arm.com>2021-04-07 14:35:25 +0100
committerNarumol Prangnawarat <narumol.prangnawarat@arm.com>2021-05-07 18:12:36 +0100
commit95b930c940c47e2f9a783cf17c87449cab4633c5 (patch)
tree3fbc7bc62f245fea6476e84ec9bc80b08f7a7a59 /samples/common/include/Utils/Types.hpp
parentabee0016b5b5c4129bc8d30f440449d835a6404a (diff)
downloadarmnn-95b930c940c47e2f9a783cf17c87449cab4633c5.tar.gz
MLECO-1252 ASR sample application using the public ArmNN C++ API.
Change-Id: I98cd505b8772a8c8fa88308121bc94135bb45068 Signed-off-by: Éanna Ó Catháin <eanna.ocathain@arm.com>
Diffstat (limited to 'samples/common/include/Utils/Types.hpp')
-rw-r--r--samples/common/include/Utils/Types.hpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/samples/common/include/Utils/Types.hpp b/samples/common/include/Utils/Types.hpp
new file mode 100644
index 0000000000..4d1f708844
--- /dev/null
+++ b/samples/common/include/Utils/Types.hpp
@@ -0,0 +1,54 @@
+//
+// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include <cstddef>
+#include <cstdint>
+#include <vector>
+#include <tuple>
+
+#include <armnn/BackendId.hpp>
+
+namespace common
+{
+
+struct Size
+{
+
+ uint32_t m_Width;
+ uint32_t m_Height;
+
+ Size() : Size(0, 0) {}
+
+ Size(uint32_t width, uint32_t height) :
+ m_Width{width}, m_Height{height} {}
+
+ Size(const Size& other)
+ : Size(other.m_Width, other.m_Height) {}
+
+ ~Size() = default;
+
+ Size &operator=(const Size& other) = default;
+};
+
+struct BBoxColor
+{
+ std::tuple<int, int, int> colorCode;
+};
+
+struct PipelineOptions
+{
+ std::string m_ModelName;
+ std::string m_ModelFilePath;
+ std::vector<armnn::BackendId> m_backends;
+};
+
+template<typename T>
+using InferenceResult = std::vector<T>;
+
+template<typename T>
+using InferenceResults = std::vector<InferenceResult<T>>;
+} // namespace common \ No newline at end of file