This API walkthrough introduces the wrapped classes IncrementalFixedLagSmoother declared by IncrementalFixedLagSmoother.h and demonstrates their principal Python operations.
import gtsam
import numpy as np
from gtsam.symbol_shorthand import L, XOverview¶
The IncrementalFixedLagSmoother is a FixedLagSmoother that uses iSAM2 for incremental inference.
Python wrapper walkthrough¶
The following cell exercises the wrapped API directly.
smoother = gtsam.IncrementalFixedLagSmoother(2.0)
print(type(smoother).__name__)
print([name for name in dir(smoother) if not name.startswith('_')])