blob: 6adc75dc64d51d827d82d26c73499fdf2e97c55e [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#include "InferenceTestImage.hpp"
telsoa01c577f2c2018-08-31 09:22:23 +01006#include "CaffePreprocessor.hpp"
telsoa014fcda012018-03-09 14:13:49 +00007
8#include <boost/numeric/conversion/cast.hpp>
telsoa014fcda012018-03-09 14:13:49 +00009#include <boost/assert.hpp>
10#include <boost/format.hpp>
11
12#include <iostream>
13#include <fcntl.h>
14#include <array>
15
16const std::vector<ImageSet> g_DefaultImageSet =
17{
18 {"shark.jpg", 2}
19};
20
telsoa01c577f2c2018-08-31 09:22:23 +010021CaffePreprocessor::CaffePreprocessor(const std::string& binaryFileDirectory, unsigned int width, unsigned int height,
telsoa014fcda012018-03-09 14:13:49 +000022 const std::vector<ImageSet>& imageSet)
23: m_BinaryDirectory(binaryFileDirectory)
24, m_Height(height)
25, m_Width(width)
26, m_ImageSet(imageSet.empty() ? g_DefaultImageSet : imageSet)
27{
28}
29
telsoa01c577f2c2018-08-31 09:22:23 +010030std::unique_ptr<CaffePreprocessor::TTestCaseData> CaffePreprocessor::GetTestCaseData(unsigned int testCaseId)
telsoa014fcda012018-03-09 14:13:49 +000031{
32 testCaseId = testCaseId % boost::numeric_cast<unsigned int>(m_ImageSet.size());
33 const ImageSet& imageSet = m_ImageSet[testCaseId];
34 const std::string fullPath = m_BinaryDirectory + imageSet.first;
telsoa014fcda012018-03-09 14:13:49 +000035
36 InferenceTestImage image(fullPath.c_str());
telsoa01c577f2c2018-08-31 09:22:23 +010037 image.Resize(m_Width, m_Height, CHECK_LOCATION());
telsoa014fcda012018-03-09 14:13:49 +000038
telsoa01c577f2c2018-08-31 09:22:23 +010039 // The model expects image data in BGR format.
telsoa014fcda012018-03-09 14:13:49 +000040 std::vector<float> inputImageData = GetImageDataInArmNnLayoutAsFloatsSubtractingMean(ImageChannelLayout::Bgr,
41 image, m_MeanBgr);
42
telsoa01c577f2c2018-08-31 09:22:23 +010043 // List of labels: https://gist.github.com/yrevar/942d3a0ac09ec9e5eb3a
telsoa014fcda012018-03-09 14:13:49 +000044 const unsigned int label = imageSet.second;
45 return std::make_unique<TTestCaseData>(label, std::move(inputImageData));
46}