From 610d2f93123087f9184f122e786cae0eb54eaf3f Mon Sep 17 00:00:00 2001 From: Dobiasd Date: Wed, 20 Sep 2023 17:23:06 +0200 Subject: [PATCH] re-format code --- include/fdeep/tensor.hpp | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/include/fdeep/tensor.hpp b/include/fdeep/tensor.hpp index afbbf708..d90bee27 100644 --- a/include/fdeep/tensor.hpp +++ b/include/fdeep/tensor.hpp @@ -1060,16 +1060,20 @@ inline tensor resize2d_bilinear(const tensor& in_vol, const shape2& target_size) return out_vol; } -//just a clamping function, since I don't know if project has one -inline std::size_t clamp(const std::size_t x, const std::size_t min, const std::size_t max) { +inline std::size_t clamp(const std::size_t x, const std::size_t min, const std::size_t max) +{ return fplus::min(fplus::max(x, min), max); } -//cubic spline interpolation -inline float_type cerp(const float_type* p, const float_type t) { + +// cubic spline interpolation +inline float_type cerp(const float_type* p, const float_type t) +{ return p[1] + 0.5f * t * (p[2] - p[0] + t * (2.0f * p[0] - 5.0f * p[1] + 4.0f * p[2] - p[3] + t * (3.0f * (p[1] - p[2]) + p[3] - p[0]))); } -//bicubic interpolation -inline float_type bicerp(const float_type* p, float_type x, float_type y) { + +// bicubic interpolation +inline float_type bicerp(const float_type* p, float_type x, float_type y) +{ float_type tmp[4]; tmp[0] = cerp(p, x); tmp[1] = cerp(p + 4, x); @@ -1077,16 +1081,21 @@ inline float_type bicerp(const float_type* p, float_type x, float_type y) { tmp[3] = cerp(p + 12, x); return cerp(tmp, y); } -inline float_type interpolate_2d_value_bicubicly(const tensor& t, float_type y, float_type x, std::size_t z) { - //Clamping to max size is done in the gathering step + +inline float_type interpolate_2d_value_bicubicly(const tensor& t, float_type y, float_type x, std::size_t z) +{ + // Clamping to max size is done in the gathering step y = fplus::max(0, y); x = fplus::max(0, x); - //Corner coordinates as integers + + // Corner coordinates as integers std::size_t y0 = static_cast(y); std::size_t x0 = static_cast(x); - //Relative position for interpolation + + // Relative position for interpolation float_type vals[16]; - //Gather values in area of 4x4 pixels, might want to switch the loop ordering, since idk what is the storage order + + // Gather values in area of 4x4 pixels, might want to switch the loop ordering, since idk what is the storage order for(std::size_t i = 0; i < 4; i++) { std::size_t pos_y = clamp(y0 + i - 1, 0, t.height() - 1); for(std::size_t j = 0; j < 4; j++) { @@ -1100,7 +1109,7 @@ inline float_type interpolate_2d_value_bicubicly(const tensor& t, float_type y, } inline tensor resize2d_bicubic(const tensor& in_vol, const shape2& target_size) { - tensor out_vol(tensor_shape(target_size.height_, target_size.width_, in_vol.shape().depth_), 0); + tensor out_vol(tensor_shape(target_size.height_, target_size.width_, in_vol.shape().depth_), static_cast(0)); const float_type scale_y = static_cast(target_size.height_) / static_cast(in_vol.shape().height_); const float_type scale_x = static_cast(target_size.width_) / static_cast(in_vol.shape().width_); for(std::size_t y = 0; y < out_vol.shape().height_; ++y) {