add help docs and ?

This commit is contained in:
2026-03-30 23:10:42 -07:00
parent ced43bec4f
commit 63d76bac72
76 changed files with 2184 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
# Inverse 2D FFT
Reconstruct a spatial-domain image from a 2D frequency spectrum. For exact reconstruction, connect magnitude/phase (or log magnitude/phase, or PSDF/phase) from the 2D FFT node. If phase is omitted, zero phase is assumed.
## Inputs
| Name | Type | Required | Description |
|------|------|----------|-------------|
| spectrum | DATA_FIELD | Yes | Frequency-domain field (output of FFT 2D) |
| phase | DATA_FIELD | No | Phase field; if omitted, zero phase is used |
## Outputs
| Name | Type | Description |
|------|------|-------------|
| image | DATA_FIELD | Reconstructed spatial-domain field |
## Controls
| Name | Type | Default | Description |
|------|------|---------|-------------|
| representation | dropdown | magnitude | How to interpret the spectrum input: magnitude, log_magnitude, or psdf |
## Limitations
- The spectrum input must be a frequency-domain DATA_FIELD; connecting a spatial-domain field raises an error.
- If phase is connected, it must also be a frequency-domain field with the same shape as the spectrum.
- Reconstruction from PSDF (which discards phase) assumes zero phase and produces a symmetric result.