Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create the Gaussian filter using the function shown in Equation 1. Note is a hyper-parameter that we set, and depends on the size of your
Create the Gaussian filter using the function shown in Equation 1. Note is a hyper-parameter that we set, and depends on the size of your kernel.
g(x, y)=\frac{1}{2 \pi \sigma^{2}} e^{-\frac{x^{2}+y^{2}}{2 \sigma^{2}}} (1)
Hint: You can use np.fromfunction and/or np.meshgrid. Also remember to center your
fifilter. So if you want a 11 11 filter your x and y values must be in the range: {5, ; 4, ..., 4, 5}
and not in the range {0, 1, ..., 9, 10}.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started