fft_image🔗
Short description🔗
fft_image — Compute the fast Fourier transform of an image.
Signature🔗
fft_image( image Image, out image ImageFFT )
Description🔗
fft_image calculates the Fourier transform of the input
image (Image), i.e., it transforms the image into the
frequency domain. The algorithm used is the fast Fourier transform.
This corresponds to the call
fft_generic(Image,ImageFFT,'to_freq',-1,'sqrt','dc_center','complex').
Attention🔗
The transformation is always performed for the entire image, i.e., the domain of the image is ignored.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Automatically parallelized on tuple level.
-
Automatically parallelized on channel level.
-
Automatically parallelized on internal data level.
Parameters🔗
Image (input_object) (multichannel-)image(-array) → object (byte / real)
Input image.
ImageFFT (output_object) image(-array) → object (complex)
Fourier-transformed image.
Result🔗
fft_image returns 2 (H_MSG_TRUE) if the input image is of correct
type. If the input is empty the behavior can be set via
set_system(::'no_object_result',<Result>:). If necessary,
an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
optimize_fft_speed, read_fft_optimization_data
Possible successors
convol_fft, convol_gabor, convert_image_type, power_byte, power_real, power_ln, phase_deg, phase_rad
Alternatives
See also
Module🔗
Foundation