SmoothHistogram_Gauss


Smooths a histogram by averaging points within a kernel using gaussian-weighted average.

Syntax

C++
C#
Python
 
def SmoothHistogram_Gauss(
	inHistogram: Histogram,
	outHistogram: Histogram,
	/,
	*,
	inRange: Range | None = None,
	inStdDev: float = 0.6,
	inKernelRelativeSize: float = 3.0,
	inCyclic: bool = False
)
-> None

Parameters

Name Type Range Default Description
Input value inHistogram Histogram Input histogram
Input value inRange Range | None None
Input value inStdDev float 0.0 - 0.6 Smoothing standard deviation
Input value inKernelRelativeSize float 0.0 - 3.0
Input value inCyclic bool False
Output value outHistogram Histogram Output histogram