-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement forward Fourier transform #8
Comments
actually ^^' I need this for something..... so gonna go ahead and implement this |
Ok, I think I definitely need to implement this now ^^ I would appreciate any pointer you may have about galsim So far I found these: |
yeahhhhh, so probably we should take some time to talk about that. |
So I made a tiny notebook to try out the Fourier convolution against GalSim, here: |
Looks like I was wrong, it works for even size stamp :-/ |
I'm trying to understand how galsim is performing forward Fourier transform. kim0 = obj0.drawKImage(bounds=bounds,
scale=2*_pi/(_stamp_size*padding_factor*_scale),
recenter=False).array where Maybe when I compute the Fourier transform with TF or numpy, the Fourier scale is not |
Note that it's the "bounds" that define the image range, not necessarily the scale, in galsim |
The aim of this issue is to document the implementation of the galsim Fourier transform in TF used in the beginning of the demo notebook.
We want to take as input a pixel image a return the Fourier image, as the
drawKImage(bounds, scale, recenter)
galsim function does.The text was updated successfully, but these errors were encountered: