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

29
docs/nodes/FFT Filter.md Normal file
View File

@@ -0,0 +1,29 @@
# FFT Filter
Frequency-domain filtering of a line profile or 2D data field using a Butterworth transfer function. Connect a LINE for 1D filtering or a DATA_FIELD for 2D filtering; the output mirrors the input type. Equivalent to Gwyddion fft_filter_1d / fft_filter_2d.
## Inputs
| Name | Type | Required | Description |
|------|------|----------|-------------|
| input | LINE or DATA_FIELD | Yes | Input line or field to filter |
## Outputs
| Name | Type | Description |
|------|------|-------------|
| filtered | LINE or DATA_FIELD | Filtered output matching the input type |
## Controls
| Name | Type | Default | Description |
|------|------|---------|-------------|
| filter_type | dropdown | lowpass | Filter mode: lowpass, highpass, bandpass, or notch (band-reject) |
| cutoff | FLOAT | 0.1 | Lower cutoff frequency as a fraction of Nyquist (0.0011.0) |
| cutoff_high | FLOAT | 0.4 | Upper cutoff for bandpass/notch modes (0.0011.0) |
| order | INT | 2 | Butterworth filter order; higher values give steeper roll-off (110) |
## Limitations
- cutoff_high is only used for bandpass and notch modes.
- The filter is applied in the frequency domain via FFT; very short lines may show wrap-around artefacts.