54 template<
typename dtype>
60 Shape outShape(inShape);
61 outShape.
rows += inBoundarySize * 2;
62 outShape.
cols += inBoundarySize * 2;
65 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
66 Slice(inBoundarySize, inBoundarySize + inShape.
cols), inImage);
68 for (
uint32 row = 0; row < inBoundarySize; ++row)
72 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
73 inImage(inBoundarySize - row - 1,
Slice(0, inShape.
cols)));
76 outArray.
put(row + inBoundarySize + inShape.
rows,
77 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
81 for (
uint32 col = 0; col < inBoundarySize; ++col)
84 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
86 inImage(
Slice(0, inShape.
rows), inBoundarySize - col - 1));
89 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
90 col + inBoundarySize + inShape.
cols,
96 Slice(0, inBoundarySize)));
100 const uint32 upperRowStart = outShape.
rows - 2 * inBoundarySize;
102 Slice(0, inBoundarySize)));
106 outArray.
put(
Slice(0, inBoundarySize),
Slice(0, inBoundarySize), lowerLeft);
107 outArray.
put(
Slice(0, inBoundarySize),
Slice(outShape.
cols - inBoundarySize, outShape.
cols), lowerRight);
109 Slice(0, inBoundarySize), upperLeft);
111 Slice(outShape.
cols - inBoundarySize, outShape.
cols), upperRight);