aboutsummaryrefslogtreecommitdiff
path: root/tests/ClassifierTestCaseData.hpp
blob: a86ab61c7f43186cd3764a4bbe71fe3e089b8a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include <vector>

template <typename DataType>
class ClassifierTestCaseData
{
public:
    ClassifierTestCaseData(unsigned int label, std::vector<DataType> inputImage)
     : m_Label(label)
     , m_InputImage(std::move(inputImage))
    {
    }

    const unsigned int m_Label;
    std::vector<DataType> m_InputImage;
};