Bandpass filter of FFT applied image. (Like ImageJ bandpass filter algorithm)
Posted
by maximus
on Stack Overflow
See other posts from Stack Overflow
or by maximus
Published on 2010-04-05T16:08:36Z
Indexed on
2010/04/05
16:13 UTC
Read the original article
Hit count: 236
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++.
© Stack Overflow or respective owner