Hi all,
although my script of calling common convolution matrices is working, I have a question:
If I call i.e.
image.convolve([ 0,0,1,0,0,
0,0,0,0,0,
0,0,2,0,0,
0,0,0,2,0,
1,0,1,0,0 ]);
the parameter is a one-dimensional array, which is "meant" to be a 5x5 kernel size.
How does the convolve function "know" about this - or do I have to tell it by a property or method ?