aboutsummaryrefslogtreecommitdiff
path: root/tests/ImageNetDatabase.hpp
blob: cd990c458a69ab93c8fbc1a1a999614f1b8567c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// 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;
};