NumCpp
2.4.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
30
#include "
NumCpp/NdArray.hpp
"
31
#include "
NumCpp/Core/Slice.hpp
"
32
#include "
NumCpp/Core/Types.hpp
"
33
#include "
NumCpp/Core/Internal/StaticAsserts.hpp
"
34
35
namespace
nc
36
{
37
namespace
filter
38
{
39
namespace
boundary
40
{
41
//============================================================================
42
// Method Description:
50
template
<
typename
dtype>
51
NdArray<dtype>
trimBoundary1d
(
const
NdArray<dtype>
& inImageWithBoundary,
uint32
inSize)
52
{
53
STATIC_ASSERT_ARITHMETIC
(dtype);
54
55
uint32
boundarySize = inSize / 2;
// integer division
56
uint32
imageSize = inImageWithBoundary.
size
() - boundarySize * 2;
57
58
return
inImageWithBoundary[
Slice
(boundarySize, boundarySize + imageSize)];
59
}
60
}
61
}
62
}
StaticAsserts.hpp
STATIC_ASSERT_ARITHMETIC
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition:
StaticAsserts.hpp:37
nc::filter::boundary::trimBoundary1d
NdArray< dtype > trimBoundary1d(const NdArray< dtype > &inImageWithBoundary, uint32 inSize)
Definition:
trimBoundary1d.hpp:51
nc::NdArray< dtype >
nc::uint32
std::uint32_t uint32
Definition:
Types.hpp:40
NdArray.hpp
nc::NdArray::size
size_type size() const noexcept
Definition:
NdArrayCore.hpp:4370
nc
Definition:
Coordinate.hpp:44
Types.hpp
nc::Slice
A Class for slicing into NdArrays.
Definition:
Slice.hpp:43
Slice.hpp
include
NumCpp
Filter
Boundaries
Boundaries1d
trimBoundary1d.hpp
Generated by
1.8.17