How do I obtain FFT of nabla operator F(▽)?

8 views (last 30 days)
I would like to write a matlab program that solves a least squares problem by using FFT(Fast Fourier Transform), but I don't know how to computes this in matlab:F(▽^T▽),where F means FFT,and ▽ is applied on an M×N image.
Waiting for your kindly help,
Thank you in advance.

Accepted Answer

Matt J
Matt J on 20 Oct 2021
Edited: Matt J on 21 Oct 2021
4*fft2(del2(Image))
  2 Comments
Suki Liu
Suki Liu on 22 Oct 2021
Thanks for your help! It‘s’ my fault for not explaining my question in detail.In fact,F(▽^T▽) is the denominator,and the entire equation is F(▽^T▽G)=F(L),which equals F(G)=F(L)/F(▽^T▽),G,L are both M×N image.To obtain the value of G,I need to compute F(▽^T▽) .Thanks again!
Matt J
Matt J on 22 Oct 2021
Edited: Matt J on 22 Oct 2021
You can use pcg() to solve the equation. It will let you specify the operator in the functional form that I have proposed.
Your equation is ill-posed, however, because ▽^T▽ is singular. You probably need to add some regularization term.

Sign in to comment.

More Answers (0)

Categories

Find more on Fourier Analysis and Filtering in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!