# Examples from pyvista.ImageDataFilters.rfft
# ===========================================

# Apply reverse FFT to an example image.
from pyvista import examples
image = examples.download_moonlanding_image()
fft_image = image.fft()
image_again = fft_image.rfft()
image_again.point_data

# See Fast Fourier Transform for a full example using this filter.

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

