52 template<
typename dtype>
58 Shape outShape(inShape);
59 outShape.
rows += inBoundarySize * 2;
60 outShape.
cols += inBoundarySize * 2;
63 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
64 Slice(inBoundarySize, inBoundarySize + inShape.
cols), inImage);
66 for (
uint32 row = 0; row < inBoundarySize; ++row)
70 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
71 inImage(inBoundarySize - row,
Slice(0, inShape.
cols)));
74 outArray.
put(row + inBoundarySize + inShape.
rows,
75 Slice(inBoundarySize, inBoundarySize + inShape.
cols),
79 for (
uint32 col = 0; col < inBoundarySize; ++col)
82 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
84 inImage(
Slice(0, inShape.
rows), inBoundarySize - col));
87 outArray.
put(
Slice(inBoundarySize, inBoundarySize + inShape.
rows),
88 col + inBoundarySize + inShape.
cols,
94 Slice(0, inBoundarySize)));
98 const uint32 upperRowStart = outShape.
rows - 2 * inBoundarySize - 1;
100 Slice(0, inBoundarySize)));
104 outArray.
put(
Slice(0, inBoundarySize),
Slice(0, inBoundarySize), lowerLeft);
105 outArray.
put(
Slice(0, inBoundarySize),
Slice(outShape.
cols - inBoundarySize, outShape.
cols), lowerRight);
107 Slice(0, inBoundarySize), upperLeft);
109 Slice(outShape.
cols - inBoundarySize, outShape.
cols), upperRight);