aboutsummaryrefslogtreecommitdiff
path: root/utils/GraphUtils.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-02-16 11:42:38 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:47:18 +0000
commit140fdc76e99c92b2f71865b679de0659a70b713f (patch)
treea8218bfd303772ed68f6c4d57e17d5ddd7b61ce0 /utils/GraphUtils.cpp
parent72f39be2f372b9a810cb27320dba5d0722407549 (diff)
downloadComputeLibrary-140fdc76e99c92b2f71865b679de0659a70b713f.tar.gz
COMPMID-913: Fix preprocessing step for TF models.
Change-Id: If0fbb6bbe5384038124d3dc189274b8266f796ca Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120771 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'utils/GraphUtils.cpp')
-rw-r--r--utils/GraphUtils.cpp65
1 files changed, 41 insertions, 24 deletions
diff --git a/utils/GraphUtils.cpp b/utils/GraphUtils.cpp
index a36cf8ea9f..448343a977 100644
--- a/utils/GraphUtils.cpp
+++ b/utils/GraphUtils.cpp
@@ -36,6 +36,41 @@
using namespace arm_compute::graph_utils;
+void TFPreproccessor::preprocess(ITensor &tensor)
+{
+ Window window;
+ window.use_tensor_dimensions(tensor.info()->tensor_shape());
+
+ execute_window_loop(window, [&](const Coordinates & id)
+ {
+ const float value = *reinterpret_cast<float *>(tensor.ptr_to_element(id));
+ float res = value / 255.f; // Normalize to [0, 1]
+ res = (res - 0.5f) * 2.f; // Map to [-1, 1]
+ *reinterpret_cast<float *>(tensor.ptr_to_element(id)) = res;
+ });
+}
+
+CaffePreproccessor::CaffePreproccessor(std::array<float, 3> mean, bool bgr)
+ : _mean(mean), _bgr(bgr)
+{
+ if(_bgr)
+ {
+ std::swap(_mean[0], _mean[2]);
+ }
+}
+
+void CaffePreproccessor::preprocess(ITensor &tensor)
+{
+ Window window;
+ window.use_tensor_dimensions(tensor.info()->tensor_shape());
+
+ execute_window_loop(window, [&](const Coordinates & id)
+ {
+ const float value = *reinterpret_cast<float *>(tensor.ptr_to_element(id)) - _mean[id.z()];
+ *reinterpret_cast<float *>(tensor.ptr_to_element(id)) = value;
+ });
+}
+
PPMWriter::PPMWriter(std::string name, unsigned int maximum)
: _name(std::move(name)), _iterator(0), _maximum(maximum)
{
@@ -76,28 +111,14 @@ bool DummyAccessor::access_tensor(ITensor &tensor)
return ret;
}
-PPMAccessor::PPMAccessor(std::string ppm_path, bool bgr,
- float mean_r, float mean_g, float mean_b,
- float std_r, float std_g, float std_b)
- : _ppm_path(std::move(ppm_path)), _bgr(bgr), _mean_r(mean_r), _mean_g(mean_g), _mean_b(mean_b), _std_r(std_r), _std_g(std_g), _std_b(std_b)
+PPMAccessor::PPMAccessor(std::string ppm_path, bool bgr, std::unique_ptr<IPreprocessor> preprocessor)
+ : _ppm_path(std::move(ppm_path)), _bgr(bgr), _preprocessor(std::move(preprocessor))
{
}
bool PPMAccessor::access_tensor(ITensor &tensor)
{
utils::PPMLoader ppm;
- const float mean[3] =
- {
- _bgr ? _mean_b : _mean_r,
- _mean_g,
- _bgr ? _mean_r : _mean_b
- };
- const float std[3] =
- {
- _bgr ? _std_b : _std_r,
- _std_g,
- _bgr ? _std_r : _std_b
- };
// Open PPM file
ppm.open(_ppm_path);
@@ -108,15 +129,11 @@ bool PPMAccessor::access_tensor(ITensor &tensor)
// Fill the tensor with the PPM content (BGR)
ppm.fill_planar_tensor(tensor, _bgr);
- // Subtract the mean value from each channel
- Window window;
- window.use_tensor_dimensions(tensor.info()->tensor_shape());
-
- execute_window_loop(window, [&](const Coordinates & id)
+ // Preprocess tensor
+ if(_preprocessor)
{
- const float value = *reinterpret_cast<float *>(tensor.ptr_to_element(id)) - mean[id.z()];
- *reinterpret_cast<float *>(tensor.ptr_to_element(id)) = value / std[id.z()];
- });
+ _preprocessor->preprocess(tensor);
+ }
return true;
}