Reputation: 31778
I am new to image processing but would like to know how to do a simple 2D Fourier transform on an image using OpenCV?
I am basically looking to do what this Java applet does http://www.brainflux.org/java/classes/FFT2DApplet.html only with OpenCv - I would like a complete example if possible doDFT(Mat imagein, Mat result)
Upvotes: 0
Views: 9854
Reputation: 161
You can find a complete example of 2d DFT using OpenCV in the official documentation:
Upvotes: 4