open3d.pipelines.registration.HuberLoss¶
-
class
open3d.pipelines.registration.
HuberLoss
¶ The loss ρ(r) for a given residual
r
is:ρ(r)={r22,|r|≤k.k(|r|−k/2),otherwise.The weight w(r) for a given residual
r
is given by:w(r)={1,|r|≤k.k|r|,otherwise.-
__init__
(*args, **kwargs)¶ Overloaded function.
__init__(self: open3d.cpu.pybind.pipelines.registration.HuberLoss, arg0: open3d.cpu.pybind.pipelines.registration.HuberLoss) -> None
Copy constructor
__init__(self: open3d.cpu.pybind.pipelines.registration.HuberLoss, k: float) -> None
-
weight
(self, residual)¶ Obtain the weight for the given residual according to the robust kernel model.
- Parameters
residual (float) – value obtained during the optimization problem
- Returns
float
-
property
k
¶ Parameter of the loss
-