47 template<
typename dtype>
53 Shape outShape(inShape);
54 outShape.
rows += inBoundarySize * 2;
55 outShape.
cols += inBoundarySize * 2;
58 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
59 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
63 outArray.
put(
Slice(0, inBoundarySize),
64 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
69 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
73 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
74 Slice(0, inBoundarySize),
78 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
85 outArray(
Slice(inBoundarySize, 2 * inBoundarySize),
Slice(outShape.
cols - inBoundarySize, outShape.
cols));
87 const uint32 upperRowStart = outShape.
rows - 2 * inBoundarySize;
89 outArray(
Slice(upperRowStart, upperRowStart + inBoundarySize),
Slice(0, inBoundarySize));
93 outArray.
put(
Slice(0, inBoundarySize),
Slice(0, inBoundarySize), upperLeft);
94 outArray.
put(
Slice(0, inBoundarySize),
Slice(outShape.
cols - inBoundarySize, outShape.
cols), upperRight);
95 outArray.
put(
Slice(outShape.
rows - inBoundarySize, outShape.
rows),
Slice(0, inBoundarySize), lowerLeft);
#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:139
const Shape & shape() const noexcept
Definition: NdArrayCore.hpp:4511
self_type & put(index_type inIndex, const value_type &inValue)
Definition: NdArrayCore.hpp:3693
A Shape Class for NdArrays.
Definition: Core/Shape.hpp:41
uint32 rows
Definition: Core/Shape.hpp:44
uint32 cols
Definition: Core/Shape.hpp:45
A Class for slicing into NdArrays.
Definition: Slice.hpp:45
Definition: addBoundary1d.hpp:44
NdArray< dtype > wrap2d(const NdArray< dtype > &inImage, uint32 inBoundarySize)
Definition: wrap2d.hpp:48
std::uint32_t uint32
Definition: Types.hpp:40