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 | |
|---|---|---|---|---|---|
![]() |
inHistogram | Histogram | Input histogram | ||
![]() |
inRange | Range | None | None | ||
![]() |
inStdDev | float | 0.0 - ![]() |
0.6 | Smoothing standard deviation |
![]() |
inKernelRelativeSize | float | 0.0 - ![]() |
3.0 | |
![]() |
inCyclic | bool | False | ||
![]() |
outHistogram | Histogram | Output histogram |



