I have a side project where I want to blur an image in C#. My idea is to use Bitmap to divide an image into red, blue and green arrays.
My next step is to make a 3x3 matrix and take the outer blocks of the array and place the average of the sum into the middle block.
Example place the average of the Z's and place it into the X value for each of the arrays of the RGB. The 3x3 would look like this:
ZZZ
ZXZ
ZZZ
Any help or comments would be much appreciated.