i want an easy way to apply the gaussian blur to a grayscale image
i am using bmp library and i am trying to apply gaussian function to the pixels
you can access the image here https://e.top4top.net/p_832qn9kv1.png
image[i][j] = (exp(-(pow(image[i][j],2))/(11.5)))/(1/(sqrt(2*3.1415*5.7))) ;
the problem is generating a black image . i can access the pixels values and locations .
so what is the easiest way to apply this filter