NumCpp  2.11.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
trimBoundary1d.hpp
Go to the documentation of this file.
1 #pragma once
29 
31 #include "NumCpp/Core/Slice.hpp"
32 #include "NumCpp/Core/Types.hpp"
33 #include "NumCpp/NdArray.hpp"
34 
35 namespace nc::filter::boundary
36 {
37  //============================================================================
38  // Method Description:
45  template<typename dtype>
46  NdArray<dtype> trimBoundary1d(const NdArray<dtype>& inImageWithBoundary, uint32 inSize)
47  {
49 
50  uint32 boundarySize = inSize / 2; // integer division
51  uint32 imageSize = inImageWithBoundary.size() - boundarySize * 2;
52 
53  return inImageWithBoundary[Slice(boundarySize, boundarySize + imageSize)];
54  }
55 } // namespace nc::filter::boundary
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:39
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:138
size_type size() const noexcept
Definition: NdArrayCore.hpp:4477
A Class for slicing into NdArrays.
Definition: Slice.hpp:45
Definition: addBoundary1d.hpp:44
NdArray< dtype > trimBoundary1d(const NdArray< dtype > &inImageWithBoundary, uint32 inSize)
Definition: trimBoundary1d.hpp:46
std::uint32_t uint32
Definition: Types.hpp:40