aboutsummaryrefslogtreecommitdiff
path: root/tests/MobileNetDatabase.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/MobileNetDatabase.hpp')
-rw-r--r--tests/MobileNetDatabase.hpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/MobileNetDatabase.hpp b/tests/MobileNetDatabase.hpp
new file mode 100644
index 0000000000..eb34260e90
--- /dev/null
+++ b/tests/MobileNetDatabase.hpp
@@ -0,0 +1,36 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// See LICENSE file in the project root for full license information.
+//
+#pragma once
+
+#include "ClassifierTestCaseData.hpp"
+
+#include <array>
+#include <string>
+#include <vector>
+#include <memory>
+
+using ImageSet = std::pair<const std::string, unsigned int>;
+
+class MobileNetDatabase
+{
+public:
+ using TTestCaseData = ClassifierTestCaseData<float>;
+
+ explicit MobileNetDatabase(const std::string& binaryFileDirectory,
+ unsigned int width,
+ unsigned int height,
+ const std::vector<ImageSet>& imageSet);
+
+ std::unique_ptr<TTestCaseData> GetTestCaseData(unsigned int testCaseId);
+
+private:
+ unsigned int GetNumImageElements() const { return 3 * m_Width * m_Height; }
+ unsigned int GetNumImageBytes() const { return 4 * GetNumImageElements(); }
+
+ std::string m_BinaryDirectory;
+ unsigned int m_Height;
+ unsigned int m_Width;
+ const std::vector<ImageSet> m_ImageSet;
+}; \ No newline at end of file