CS 791 E   Programming Assignment # 1 



2.  Write a program  that implements convolution on a given image using Gaussian mask.

2.1. Methodology

Because of the symetry and separability of Gaussian function, we can apply the Gaussian mask (2-D) on an image by using 2 separate steps: 1). applying 1-D mask for every row of the image, and 2). applying the 1-D mask on the above image.

2.2. Program

2.3. Results