aboutsummaryrefslogtreecommitdiff
path: root/tests/ImageNetDatabase.hpp
diff options
context:
space:
mode:
authortelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
committertelsoa01 <telmo.soares@arm.com>2018-08-31 09:22:23 +0100
commitc577f2c6a3b4ddb6ba87a882723c53a248afbeba (patch)
treebd7d4c148df27f8be6649d313efb24f536b7cf34 /tests/ImageNetDatabase.hpp
parent4c7098bfeab1ffe1cdc77f6c15548d3e73274746 (diff)
downloadarmnn-c577f2c6a3b4ddb6ba87a882723c53a248afbeba.tar.gz
Release 18.08
Diffstat (limited to 'tests/ImageNetDatabase.hpp')
-rw-r--r--tests/ImageNetDatabase.hpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/ImageNetDatabase.hpp b/tests/ImageNetDatabase.hpp
deleted file mode 100644
index cd990c458a..0000000000
--- a/tests/ImageNetDatabase.hpp
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// 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 ImageNetDatabase
-{
-public:
- using TTestCaseData = ClassifierTestCaseData<float>;
-
- explicit ImageNetDatabase(const std::string& binaryFileDirectory,
- unsigned int width = 227,
- unsigned int height = 227,
- const std::vector<ImageSet>& imageSet = std::vector<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;
- //mean value of the database [B, G, R]
- const std::array<float, 3> m_MeanBgr = {{104.007965f, 116.669472f, 122.675102f}};
- const std::vector<ImageSet> m_ImageSet;
-}; \ No newline at end of file