Hi
looking at image.calculate_inverse_fft I was wandering why target_bounds ymax value is No2-1 and not No2, I guess it is a to fit FFT requirements. In fact this is also the case in drawFFT_finish by the way.
Thanks
Because the sizes have to be even. Well, they don't have to be, but it's way faster if the size is a power of 2 or 3 x a power of two, so we enforce that for all our FFTs.
Hi looking at
image.calculate_inverse_fft
I was wandering why target_bounds ymax value isNo2-1
and notNo2
, I guess it is a to fit FFT requirements. In fact this is also the case indrawFFT_finish
by the way. Thanks