Matrix interface.
At returns the matrix value at position x, y.
Normalized returns a new matrix with normalized values.
MaxX returns the horizontal length.
MaxY returns the vertical length.
type Options struct {
Bias float64 Wrap bool KeepAlpha bool}
Options are the Convolve function parameters.
Bias is added to each RGB channel after convoluting. Range is -255 to 255.
Wrap sets if indices outside of image dimensions should be taken from the opposite side.
KeepAlpha sets if alpha should be convolved or kept from the source image.