This node generates fractional Brownian motion (fBm) noise. It offers versatility in producing various types of noise including gaussian, pink, 2D brownian noise, and all intermediates.
By default, the node generates normal gaussian noise.
⭐⭐ Expand advanced parameter explanation ⭐⭐
Here's an overview of its parameters:
-
factorandrescaleoperate similarly toSonarCustomNoise, enabling the addition of multiple sources of noises. -
time_brownianintroduces correlation across sampler timesteps for SDE solvers. -
alphais the main parameter.alpha > 0amplifies low frequencies;alpha = 1yields pink noise, andalpha = 2produces brownian noise. Conversely, foralpha < 0, it amplifies high frequencies. -
min_freqandmax_freqdetermine the range of frequencies allowed through. Settingmax_freq =$\sqrt{1/2} \simeq 0.7071$ enables the passage of the highest frequencies. In cases wherealpha < 0, settingmax_freq = 0.5is advisable to diminish the power of diagonally oriented frequencies. -
stretch,rotate, andpnormalter the filter's shape by stretching, rotating, or cushioning the band-pass region. - Lowering
mixmoderates the filter's effect by blending back unfiltered gaussian noise from the same sample. -
common_modeis an attempt to desaturate the latent by injecting the average across channels into every latent channel. FIXME: it's not all channels anymore However, this may result in a specific color due to the encoding of the unit vector by the latent space. Note that this is done after themixing of unfiltered gaussian noise. -
channel_correlationFIXME: TBD - Enabling
previewprovides a visual representation of the filter.no_mixsetsmix = 1for the preview. The preview includes, from left to right:- Fourier domain visualization: Low frequencies at the center, with black indicating filtered-out frequencies.
- Spatial visualization of the 2D kernel: The filtering can be interpreted as convolution with the displayed kernel.
- Sample: Gaussian sample with shaped frequency spectrum. A single latent channel will look like this.
Frequency-domain Interpretation: The Fourier transform decomposes a 2D latent into sinusoids covering all spatial orientations and frequencies. For an independent and identically distributed gaussian sample, energy is evenly distributed across all frequencies and orientations. Scaling the power spectrum by
Spatial Domain Interpretation: A gaussian latent sample comprises independently sampled pixels, exhibiting no spatial correlations. Conversely, a requirement that each pixel value differs from its neighbors by a
Seed Considerations: While the node defaults to outputting gaussian noise, a given seed produce a different sample than the one produced by other gaussian noise sources. This stems from sampling the noise directly in the frequency domain to avoid the cost of a FFT. When time_brownian = true, noise sampling occurs in the spatial domain, ensuring that default parameters yield output equivalent to SonarCustomNoise set to brownian.
From a usage perspective, using positive alpha will tend to create a colorful effect, using negative alpha will create line/streak like artifacts sort of like an oil painting canvas. Start with small values at first (-0.1, 0.1) and adjust as necessary. time_brownian makes the effect of power noise (and alpha) stronger - also note that it can only be used when sampling and not for NoisyLatentLike. Setting common_mode also generally seems to intensify these effects. Different types of models (normal EPS models, v-prediction models, SDXL) generally react differently to these exotic noise types so my advice is to experiment! Lowering mix uses normal gaussian noise for part of the generated noise. For example, mix=1.0 means 100% power noise, mix=0.5 means 50/50 power noise and normal gaussian noise. This also is about the same as setting factor to 0.5 and plugging in a SonarCustomNoise node with factor at 0.5 also and the type set to guassian.
Noise from the SonarCustomNoise node and SonarPowerNoise can be freely mixed.
This node lets you connect a filter (see below) and a custom noise chain. It basically lets you run any type of noise through the power noise filter.
New parameters:
filter_norm_factorcontrols how much normalization is applied to the filter.1.0means fully normalized,0.0means no normalization.- You may set the preview type to
customto see a color preview of the filtered noise. Note that this uses whatever preview type you have configured in ComfyUI (for example, TAESD). The preview is based on SD 1.5's interpretation of the noise.
Most of the parameters here are similar to the SonarPowerNoise node. New parameters:
scaleallows you to scale the filter (you could consider this to be set to1.0in theSonarPowerNoisenode).compose_modeallows you to compose multiple filters. Note that composition occurs likecurrent_filter OPERATION connected_filter. So if you setcompose_modetosub, you will getcurrent_filter - connected_filter. Scaling occurs before composition.
Allows you to preview a filter. It does not modify the input filter.
The example images are all workflow-included. Generated using dpmpp_2s_ancestral, Karras scheduler and
starting out with gaussian noise then switching to power noise at the 35% mark. filter_norm_factor is set to
1.0 in these examples.
This should be the same as normal gaussian noise.
Positive alpha generally produces a colorful effect. Start with relatively low values and increase until you achieve the desired result. Note that these examples use relatively extreme settings.
With alpha 0.25:
With alpha 0.25, common mode 0.25:
With alpha 0.35:
With alpha 0.35, common mode 0.35:
With alpha 0.5:
With alpha 0.5, common mode 0.5:
With alpha -0.5:
With alpha -1.5:
With alpha 0.5:
With alpha -0.5:











