Convolve¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
The image to extract patches from. | Image |
||
Output ➡️ |
The extracted patch as an image. | Image |
||
Radius |
No | The radius of the kernel, e.g. 1 = 1x1; 2 = 3x3; 3 = 5x5 and so on. | 1 |
Int |
Step |
No | How many pixels to advance the centre of the patch extracted each activation. | 1 |
Int |
This shard extracts a patch from an image of dimensions specified in the Radius parameter and outputs the extracted patch as an image. Everytime the shard is subsequently called, the centre of the patch to extract is advanced by the number of pixels specified in the Step parameter.
Details¶
With each call of the shard, the center of the patch is moved along the x-axis by the number of pixels specified in the Step
parameter. When it reaches the end of the image on that row, it wraps around to the beginning of the next row.