51 template<
typename dtype>
57 Shape outShape(inShape);
58 outShape.
rows += inBoundarySize * 2;
59 outShape.
cols += inBoundarySize * 2;
62 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
63 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
67 outArray.
put(
Slice(0, inBoundarySize),
68 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
73 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
77 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
78 Slice(0, inBoundarySize),
82 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
88 outArray(
Slice(inBoundarySize, 2 * inBoundarySize),
Slice(0, inBoundarySize));
92 const uint32 upperRowStart = outShape.
rows - 2 * inBoundarySize;
94 outArray(
Slice(upperRowStart, upperRowStart + inBoundarySize),
Slice(0, inBoundarySize));
98 outArray.
put(
Slice(0, inBoundarySize),
Slice(0, inBoundarySize), upperLeft);
99 outArray.
put(
Slice(0, inBoundarySize),
102 outArray.
put(
Slice(outShape.
rows - inBoundarySize, outShape.
rows),
Slice(0, inBoundarySize), lowerLeft);
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
NdArray< dtype > & put(int32 inIndex, value_type inValue)
Definition: NdArrayCore.hpp:3479
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4092
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:44
NdArray< dtype > wrap2d(const NdArray< dtype > &inImage, uint32 inBoundarySize)
Definition: wrap2d.hpp:52
Definition: Coordinate.hpp:45
std::uint32_t uint32
Definition: Types.hpp:40