Commit bf9291d 1 parent 1dce296 commit bf9291d Copy full SHA for bf9291d
File tree 3 files changed +901
-6
lines changed
3 files changed +901
-6
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,5 @@ All the dependencies should get installed by this command and the package should
24
24
2. Toy Problem - Traditional <./tutorial/traditional.ipynb >
25
25
3. Toy Problem - Lie groups <./tutorial/lie_groups.ipynb >
26
26
4. Specifying Jacobians <./tutorial/jacobians.ipynb >
27
- 4. Composite States <./tutorial/composite.ipynb >
27
+ 4. Composite States <./tutorial/composite.ipynb >
28
+ 5. Batch Estimation <./tutorial/batch.ipynb >
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -524,11 +524,6 @@ def __init__(
524
524
525
525
def evaluate (self , x : CompositeState ) -> np .ndarray :
526
526
"""Evaluates the measurement model for the landmark state."""
527
-
528
- # The pose is always assumed to be the first element
529
- # TODO: is there a better way to do this? The
530
- # Measurement class already hold on to the IDs of these two
531
- # states
532
527
pose : MatrixLieGroupState = x .get_state_by_id (self ._pose_state_id )
533
528
landmark : VectorState = x .get_state_by_id (self ._landmark_state_id )
534
529
You can’t perform that action at this time.
0 commit comments