53 template<
typename dtype>
59 Shape outShape(inShape);
60 outShape.
rows += inBoundarySize * 2;
61 outShape.
cols += inBoundarySize * 2;
64 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
65 Slice(inBoundarySize, inBoundarySize + inShape.
cols), inImage);
67 for (
uint32 row = 0; row < inBoundarySize; ++row)
71 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
72 inImage(inBoundarySize - row - 1,
Slice(0, inShape.
cols)));
75 outArray.
put(row + inBoundarySize + inShape.
rows,
76 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
80 for (
uint32 col = 0; col < inBoundarySize; ++col)
83 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
85 inImage(
Slice(0, inShape.
rows), inBoundarySize - col - 1));
88 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
89 col + inBoundarySize + inShape.
cols,
95 Slice(0, inBoundarySize)));
99 const uint32 upperRowStart = outShape.
rows - 2 * inBoundarySize;
101 Slice(0, inBoundarySize)));
105 outArray.
put(
Slice(0, inBoundarySize),
Slice(0, inBoundarySize), lowerLeft);
106 outArray.
put(
Slice(0, inBoundarySize),
Slice(outShape.
cols - inBoundarySize, outShape.
cols), lowerRight);
108 Slice(0, inBoundarySize), upperLeft);
110 Slice(outShape.
cols - inBoundarySize, outShape.
cols), upperRight);
#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:3856
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4483
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 > reflect2d(const NdArray< dtype > &inImage, uint32 inBoundarySize)
Definition: reflect2d.hpp:54
Definition: Coordinate.hpp:45
NdArray< dtype > flipud(const NdArray< dtype > &inArray)
Definition: flipud.hpp:48
std::uint32_t uint32
Definition: Types.hpp:40