skimage 0.17.2

ParametersReturnsBackRef
ufft2(inarray)

Compute the Fourier transform on the last 2 axes.

Parameters

inarray : ndarray

The array to transform.

Returns

outarray : ndarray (same shape as inarray)

The unitary 2-D Fourier transform of inarray .

2-dimensional unitary Fourier transform.

See Also

ufftn
uifft2
urfftn

Examples

This example is valid syntax, but we were not able to check execution
>>> input = np.ones((10, 128, 128))
... output = ufft2(input)
... np.allclose(np.sum(input[1, ...]) / np.sqrt(input[1, ...].size),
...  output[1, 0, 0]) True
This example is valid syntax, but we were not able to check execution
>>> output.shape
(10, 128, 128)
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

skimage.restoration.uft.ufft2 skimage.restoration.uft.urfft2

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /skimage/restoration/uft.py#175
type: <class 'function'>
Commit: