CSE_461_Assignment (1)
CSE_461_Assignment (1)
Objective
Manually simulate the convolution operation of a Convolutional Neural Network (CNN) on
a grayscale input image using two 3 × 3 filters. Compute the output feature maps.
Filter 1 (3×3)
1 0 1
0 1 0
1 0 1
Filter 2 (3×3)
0 1 0
1 −4 1
0 1 0
Output Format
Filter 1 Output (3×3):
1
Your Name: CNN Simulation Assignment
Page 2