mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
22 lines
424 B
C++
22 lines
424 B
C++
|
//
|
||
|
// 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;
|
||
|
};
|