M
Marvin L
Guest
Dear all verilog seniors.
I am doing a small school project to design an image filter in verilog.
It can be summarized in this picture:
http://imageshack.com/a/img924/2851/Rt9ZI6.png
I have the following filter equation
h[j] = A*h[i-1][j-1] + B*h[j-1] + C*h[i+1][j-1] + D*h[i-1][j] + E*h[j] + F*h[i+1][j] + G*h[i-1][j+1] + H*h[j+1] + I*h[i+1][j+1]
However, I have no prior knowledge in RTL/verilog.
How should I proceed ?
I am doing a small school project to design an image filter in verilog.
It can be summarized in this picture:
http://imageshack.com/a/img924/2851/Rt9ZI6.png
I have the following filter equation
h[j] = A*h[i-1][j-1] + B*h[j-1] + C*h[i+1][j-1] + D*h[i-1][j] + E*h[j] + F*h[i+1][j] + G*h[i-1][j+1] + H*h[j+1] + I*h[i+1][j+1]
However, I have no prior knowledge in RTL/verilog.
How should I proceed ?