SmoothHistogram_Mean


Smooths a histogram by averaging points within a kernel.

Syntax

C++
C#
Python
 
def SmoothHistogram_Mean(
	inHistogram: Histogram,
	outHistogram: Histogram,
	/,
	*,
	inRange: Range | None = None,
	inKernelRadius: int = 3,
	inCyclic: bool = False
)
-> None

Parameters

Name Type Range Default Description
Input value inHistogram Histogram Input histogram
Input value inRange Range | None None
Input value inKernelRadius int 0 - 3 Defines the width of the kernel as 2*R+1
Input value inCyclic bool False
Output value outHistogram Histogram Output histogram