aboutsummaryrefslogtreecommitdiff
path: root/tests/ImagePreprocessor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ImagePreprocessor.hpp')
-rw-r--r--tests/ImagePreprocessor.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/ImagePreprocessor.hpp b/tests/ImagePreprocessor.hpp
index d77113c6d9..cd586818c2 100644
--- a/tests/ImagePreprocessor.hpp
+++ b/tests/ImagePreprocessor.hpp
@@ -33,8 +33,7 @@ public:
unsigned int width,
unsigned int height,
const std::vector<ImageSet>& imageSet,
- float scale=1.0,
- int32_t offset=0,
+ float scale=255.0f,
const std::array<float, 3> mean={{0, 0, 0}},
const std::array<float, 3> stddev={{1, 1, 1}},
DataFormat dataFormat=DataFormat::NHWC,
@@ -44,7 +43,6 @@ public:
, m_Width(width)
, m_BatchSize(batchSize)
, m_Scale(scale)
- , m_Offset(offset)
, m_ImageSet(imageSet)
, m_Mean(mean)
, m_Stddev(stddev)
@@ -66,7 +64,6 @@ private:
unsigned int m_BatchSize;
// Quantization parameters
float m_Scale;
- int32_t m_Offset;
const std::vector<ImageSet> m_ImageSet;
const std::array<float, 3> m_Mean;