vpi.Image.fft

Image.fft(self: vpi.Image, *, backend: vpi.Backend = vpi.Backend.DEFAULT, out: vpi.Image = None, stream: vpi.Stream = None) vpi.Image

Runs the direct FFT on the image.

It runs the direct Fast Fourier Transform (FFT) algorithm on the image generating an output image with real or complex numbers.

See also

Refer to the algorithm explanation for more details and usage examples.

Parameters
  • out (vpi.Image, optional) – The output for the algorithm.

  • backend (vpi.Backend, optional) – The backend to be used by the algorithm.

  • stream (vpi.Stream, optional) – The stream to be used by the algorithm.

Returns

The output for the algorithm.

Return type

vpi.Image

Caution

Restrictions to several arguments may apply. Check the C API references of the submit function and the group concepts for more details.