(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:ECE438Fall2011Boutin]]
+
<br>
[[Category:homework]]
+
[[Category:digital signal processing]]
+
[[Category:digital image processing]]
+
[[Category:ECE438]]
+
  
 +
= Homework 8, [[ECE438]], Fall 2011, [[User:Mboutin|Prof. Boutin]] =
  
=Homework 8, [[ECE438]], Fall 2011, [[user:mboutin|Prof. Boutin]]=
+
Due Wednesday November 30, 2011 (in class)  
Due Wednesday November 30, 2011 (in class)
+
----
+
==Question ==
+
  
Consider the following FIR filter:
+
----
 +
 
 +
== Question  ==
 +
 
 +
Consider the following FIR filter:  
  
 
<math>h[m,n]:
 
<math>h[m,n]:
Line 20: Line 18:
 
n=-1&-\frac{1}{8} & \frac{1}{2} & -\frac{1}{8}  
 
n=-1&-\frac{1}{8} & \frac{1}{2} & -\frac{1}{8}  
 
\end{array}
 
\end{array}
</math>
+
</math>  
+
a) Write a difference equation that can be used to implement this filter.
+
  
b) Is this filter separable? Answer yes/no and justify your answer.
+
a) Write a difference equation that can be used to implement this filter.  
  
c) Compute the CSFT H(u,v) of this filter. Sketch the plot of H(u,0). Sketch the plot of H(0,v).
+
b) Is this filter separable? Answer yes/no and justify your answer.
 +
 
 +
c) Compute the CSFT H(u,v) of this filter. Sketch the plot of H(u,0). Sketch the plot of H(0,v).  
 +
 
 +
d) What is the output image when this filter is applied to the following image (using symmetric boundary conditions)?
  
b) What is the output image when this filter is applied to the following image (using symmetric boundary conditions)?
 
 
<math>g[m,n]:
 
<math>g[m,n]:
 
\begin{array}{ccccccccccc}
 
\begin{array}{ccccccccccc}
Line 43: Line 42:
 
0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0\\
 
0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0\\
 
\end{array}
 
\end{array}
</math>
+
</math>  
  
----
 
== Discussion ==
 
Write your questions/comments here.
 
 
----
 
----
[[2011_Fall_ECE_438_Boutin|Back to ECE438, Fall 2011, Prof. Boutin]]
+
 
 +
== Discussion  ==
 +
 
 +
Write your questions/comments here.
 +
 
 +
 
 +
 
 +
I wrote a Matlab program that can check your answers. You can take it as reference but don't copy the answer directly. -Bo
 +
 
 +
[https://projectrhea.org/rhea/images/7/7e/HW8.zip Hw8-matlabcode.rar]
 +
 
 +
 
 +
 
 +
I am not sure if you noticed but your function returns a 13x12 matrix for fmn rather than an 11x11 matrix like the original image. Although if you remove the top and bottom rows and also the first column I agree with your answer for the final image.
 +
 
 +
 
 +
You can just use the filter2 command for g[m,n] and h[m,n] to get the result.  It uses symmetric boundaries.
 +
 
 +
-jesse
 +
 
 +
----
 +
 
 +
[[2011 Fall ECE 438 Boutin|Back to ECE438, Fall 2011, Prof. Boutin]]
 +
 
 +
[[Category:ECE438Fall2011Boutin]] [[Category:Homework]] [[Category:Digital_signal_processing]] [[Category:Digital_image_processing]] [[Category:ECE438]] [[Category:signal processing]]

Latest revision as of 03:59, 31 August 2013


Homework 8, ECE438, Fall 2011, Prof. Boutin

Due Wednesday November 30, 2011 (in class)


Question

Consider the following FIR filter:

$ h[m,n]: \begin{array}{cccc} & m=-1 & m=0 & m=1 \\ n=1&-\frac{1}{8} & \frac{1}{2} & -\frac{1}{8} \\ n=0&-\frac{1}{4} & 1 & -\frac{1}{4} \\ n=-1&-\frac{1}{8} & \frac{1}{2} & -\frac{1}{8} \end{array} $

a) Write a difference equation that can be used to implement this filter.

b) Is this filter separable? Answer yes/no and justify your answer.

c) Compute the CSFT H(u,v) of this filter. Sketch the plot of H(u,0). Sketch the plot of H(0,v).

d) What is the output image when this filter is applied to the following image (using symmetric boundary conditions)?

$ g[m,n]: \begin{array}{ccccccccccc} 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0\\ 0 & 0 & 0 & 0 & 0 & 1 & 0 & 0 & 0 & 0 & 0\\ 0 & 0 & 0 & 0 & 1 & 1 & 1 & 0 & 0 & 0 & 0\\ 0 & 0 & 0 & 1 & 1 & 1 & 1 & 1 & 0 & 0 & 0\\ 0 & 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0 & 0\\ 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0\\ 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0\\ 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0\\ 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0\\ 0 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 0\\ 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0\\ \end{array} $


Discussion

Write your questions/comments here.


I wrote a Matlab program that can check your answers. You can take it as reference but don't copy the answer directly. -Bo

Hw8-matlabcode.rar


I am not sure if you noticed but your function returns a 13x12 matrix for fmn rather than an 11x11 matrix like the original image. Although if you remove the top and bottom rows and also the first column I agree with your answer for the final image.


You can just use the filter2 command for g[m,n] and h[m,n] to get the result. It uses symmetric boundaries.

-jesse


Back to ECE438, Fall 2011, Prof. Boutin

Alumni Liaison

Correspondence Chess Grandmaster and Purdue Alumni

Prof. Dan Fleetwood