Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / tests / unit / cnn_network / mean_image.cpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #include <cstdint>
6 #include "mean_image.h"
7
8 template <>
9 const std::vector<short> MeanImage<short>::getValue() { return { 1000, 1001, 1002, 1003, 1004, 1005 }; }
10 template <>
11 const std::vector<float> MeanImage<float>::getValue() { return  { 10.10f, 11.11f, 12.12f, 13.13f, 14.14f, 15.15f }; }
12 template <>
13 const std::vector<uint8_t> MeanImage<uint8_t>::getValue() { return { 10, 11, 12, 13, 14, 15 }; }