Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Image Processing: Matlab The following 3x3 matrix h is a spatial or time domain mask that averages the nine neighbors of a pixel at (x,
Image Processing: Matlab
The following 3x3 matrix h is a spatial or time domain mask that averages the nine neighbors of a pixel at (x, y) including itself 1. >>h-ones(3)/9 h: a. Use the matlab instruction>> H-fft2(h, 512, 512); to compute the 512x512 complex matrix H(u,v) in the frequency domain. b. Use the matlab instruction >> surf; to plot the surface of |H(u,v)| c. Show that your result is a low pass filter. d. Use the matlab instruction>>h1-ifft2(1-H) and find h1(1:3,1:3) which is the left-hand-side top 3x3 matrix of h1 Compare the entries of the two masks h and h1. e. The following 3x3 matrix h is a spatial or time domain mask that averages the nine neighbors of a pixel at (x, y) including itself 1. >>h-ones(3)/9 h: a. Use the matlab instruction>> H-fft2(h, 512, 512); to compute the 512x512 complex matrix H(u,v) in the frequency domain. b. Use the matlab instruction >> surf; to plot the surface of |H(u,v)| c. Show that your result is a low pass filter. d. Use the matlab instruction>>h1-ifft2(1-H) and find h1(1:3,1:3) which is the left-hand-side top 3x3 matrix of h1 Compare the entries of the two masks h and h1. eStep 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