skimage 0.17.2

ParametersReturnsBackRef
urfft2(inarray)

Compute the real Fourier transform on the last 2 axes. This transform considers the Hermitian property of the transform from complex to real-valued input.

Parameters

inarray : ndarray, shape (M, N, ..., P)

The array to transform.

Returns

outarray : ndarray, shape (M, N, ..., 2 * (P - 1))

The unitary 2-D real Fourier transform of inarray .

2-dimensional real unitary Fourier transform

See Also

ufft2
ufftn
urfftn

Examples

This example is valid syntax, but we were not able to check execution
>>> input = np.ones((10, 128, 128))
... output = urfft2(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, 65)
See :

Back References

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

skimage.restoration.uft.uirfft2 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#239
type: <class 'function'>
Commit: