ELaserLineExtractor::SetSmoothingParameters
Sets the parameters of the smoothing kernel.
Namespace: Euresys::Open_eVision::Easy3D
[C++]
void SetSmoothingParameters(
int param0,
int param1,
int param2
)
Parameters
param0
First kernel parameter.
param1
Second kernel parameter.
param2
Third kernel parameter.
Remarks
If enabled, the smoothing will be performed using the following formula: f[i] = (f[i-1] * param0) + (f[i] * param1) + (f[i+1] * param2).
ELaserLineExtractor.SetSmoothingParameters
Sets the parameters of the smoothing kernel.
Namespace: Euresys.Open_eVision.Easy3D
[C#]
void SetSmoothingParameters(
int param0,
int param1,
int param2
)
Parameters
param0
First kernel parameter.
param1
Second kernel parameter.
param2
Third kernel parameter.
Remarks
If enabled, the smoothing will be performed using the following formula: f[i] = (f[i-1] * param0) + (f[i] * param1) + (f[i+1] * param2).
ELaserLineExtractor.SetSmoothingParameters
Sets the parameters of the smoothing kernel.
Module: open_evision.Easy3D
[Python]
SetSmoothingParameters(
param0: int
param1: int
param2: int
) -> None
Parameters
param0
First kernel parameter.
param1
Second kernel parameter.
param2
Third kernel parameter.
Remarks
If enabled, the smoothing will be performed using the following formula: f[i] = (f[i-1] * param0) + (f[i] * param1) + (f[i+1] * param2).