Bandpass filter of FFT applied image. (Like ImageJ bandpass filter algorithm)
- by maximus
There is a good function that I need, which is implemented in Java program: ImageJ
I need to understand the algorithm used there.
The function has several parameters:
link text
And before using FFT it converts image to a special one:
The Bandpass Filter uses a special algorithm to reduce edge artifacts (before the Fourier transform, the image is extended in size by attaching mirrored copies of image parts outside the original image, thus no jumps occur at the edges)
Can you tell me more about this special transform?
Actually tiling mirrored image.
I am writing on C++ and wish to rewrite that part of the program on C++.