Homework 5
Wednesday, Febrary 15, 2012
Problem 2
Flip the mask, then convulve with the original image, pad the columns on the right with zeros. The convoluted image has the same size as the original image.
Image, Mask 1
Convoluted Result: [ -5, 0, 0, -4, 0, 0, 1, 1, 1, 1, 10, -5, 0, 0, 0, 0 ]
Image, Mask 2
Convoluted Result: [ 5, 0, 0, 4, 0, 0, -1, -1, -1, -1, -10, 5, 0, 0, 0, 0 ]
Image, Mask 3
Convoluted Result: [ 5, 5, 5, 14, 14, 14, 17, 16, 15, 13, 2, 6, 5, -5, 0, 0, 0, 0 ]
Image, Mask 4
Convoluted Result: [ 5, 5, 5, 4, 4, 4, -1, -2, -3, -3, -12, -6, -5, 5, 0, 0, 0, 0 ]
Problem 3
Proportional Gain
In a closed loop system, the steady state error is
SSE = 1 / [ 1 + Kp * G(0) ]
So increasing the proportional gain will make the steady state error smaller. The system also gets to the desired steady state value faster.