gtsam-develop 4.3a0.dev202510101133__cp313-cp313-macosx_11_0_arm64.whl → 4.3a0.dev202510101307__cp313-cp313-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gtsam-develop might be problematic. Click here for more details.
- gtsam/.dylibs/{libgtsam.4.3a0.dev202510101133.dylib → libgtsam.4.3a0.dev202510101307.dylib} +0 -0
- gtsam/.dylibs/{libgtsam_unstable.4.3a0.dev202510101133.dylib → libgtsam_unstable.4.3a0.dev202510101307.dylib} +0 -0
- gtsam/__init__.pyi +13 -13
- gtsam/gtsam/__init__.pyi +3234 -3057
- gtsam/gtsam/gtsfm.pyi +10 -5
- gtsam/gtsam/imuBias.pyi +10 -10
- gtsam/gtsam/noiseModel/__init__.pyi +30 -29
- gtsam/gtsam/noiseModel/mEstimator.pyi +57 -58
- gtsam/gtsam/so3.pyi +34 -23
- gtsam/gtsam/symbol_shorthand.pyi +27 -26
- gtsam/gtsam/utilities.pyi +20 -20
- gtsam/gtsam.cpython-313-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202510101133.dist-info → gtsam_develop-4.3a0.dev202510101307.dist-info}/METADATA +1 -1
- {gtsam_develop-4.3a0.dev202510101133.dist-info → gtsam_develop-4.3a0.dev202510101307.dist-info}/RECORD +17 -17
- gtsam_unstable/gtsam_unstable.cpython-313-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202510101133.dist-info → gtsam_develop-4.3a0.dev202510101307.dist-info}/WHEEL +0 -0
- {gtsam_develop-4.3a0.dev202510101133.dist-info → gtsam_develop-4.3a0.dev202510101307.dist-info}/top_level.txt +0 -0
gtsam/gtsam/so3.pyi
CHANGED
|
@@ -3,6 +3,7 @@ so3 submodule
|
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
import numpy
|
|
6
|
+
import numpy.typing
|
|
6
7
|
import typing
|
|
7
8
|
__all__: list[str] = ['DexpFunctor', 'ExpmapFunctor', 'InvJKernel', 'Kernel']
|
|
8
9
|
class DexpFunctor(ExpmapFunctor):
|
|
@@ -21,39 +22,49 @@ class DexpFunctor(ExpmapFunctor):
|
|
|
21
22
|
def Rodrigues(self) -> Kernel:
|
|
22
23
|
...
|
|
23
24
|
@typing.overload
|
|
24
|
-
def __init__(self, omega: numpy.
|
|
25
|
+
def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
|
|
25
26
|
...
|
|
26
27
|
@typing.overload
|
|
27
|
-
def __init__(self, omega: numpy.
|
|
28
|
+
def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], nearZeroThresholdSq: typing.SupportsFloat, nearPiThresholdSq: typing.SupportsFloat) -> None:
|
|
28
29
|
...
|
|
29
|
-
def leftJacobian(self) -> numpy.
|
|
30
|
+
def leftJacobian(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
30
31
|
...
|
|
31
|
-
def rightJacobian(self) -> numpy.
|
|
32
|
+
def rightJacobian(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
32
33
|
...
|
|
33
34
|
@property
|
|
34
|
-
def omega(self) -> numpy.
|
|
35
|
+
def omega(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
|
|
35
36
|
...
|
|
36
37
|
class ExpmapFunctor:
|
|
37
|
-
A: float
|
|
38
|
-
B: float
|
|
39
38
|
@typing.overload
|
|
40
|
-
def __init__(self, omega: numpy.
|
|
39
|
+
def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
|
|
41
40
|
...
|
|
42
41
|
@typing.overload
|
|
43
|
-
def __init__(self, nearZeroThresholdSq:
|
|
42
|
+
def __init__(self, nearZeroThresholdSq: typing.SupportsFloat, axis: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
|
|
44
43
|
...
|
|
45
44
|
@typing.overload
|
|
46
|
-
def __init__(self, axis: numpy.
|
|
45
|
+
def __init__(self, axis: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], angle: typing.SupportsFloat) -> None:
|
|
47
46
|
...
|
|
48
|
-
def expmap(self) -> numpy.
|
|
47
|
+
def expmap(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
49
48
|
"""
|
|
50
49
|
Rodrigues formula.
|
|
51
50
|
"""
|
|
52
51
|
@property
|
|
53
|
-
def
|
|
52
|
+
def A(self) -> float:
|
|
53
|
+
...
|
|
54
|
+
@A.setter
|
|
55
|
+
def A(self, arg0: typing.SupportsFloat) -> None:
|
|
56
|
+
...
|
|
57
|
+
@property
|
|
58
|
+
def B(self) -> float:
|
|
59
|
+
...
|
|
60
|
+
@B.setter
|
|
61
|
+
def B(self, arg0: typing.SupportsFloat) -> None:
|
|
62
|
+
...
|
|
63
|
+
@property
|
|
64
|
+
def W(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
54
65
|
...
|
|
55
66
|
@property
|
|
56
|
-
def WW(self) -> numpy.
|
|
67
|
+
def WW(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
57
68
|
...
|
|
58
69
|
@property
|
|
59
70
|
def nearZero(self) -> bool:
|
|
@@ -66,28 +77,28 @@ class ExpmapFunctor:
|
|
|
66
77
|
...
|
|
67
78
|
class InvJKernel:
|
|
68
79
|
J: Kernel
|
|
69
|
-
def applyLeft(self, v: numpy.
|
|
80
|
+
def applyLeft(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
|
|
70
81
|
...
|
|
71
|
-
def applyRight(self, v: numpy.
|
|
82
|
+
def applyRight(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
|
|
72
83
|
...
|
|
73
|
-
def left(self) -> numpy.
|
|
84
|
+
def left(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
74
85
|
...
|
|
75
|
-
def right(self) -> numpy.
|
|
86
|
+
def right(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
76
87
|
...
|
|
77
88
|
class Kernel:
|
|
78
|
-
def applyFrechet(self, v: numpy.
|
|
89
|
+
def applyFrechet(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
79
90
|
"""
|
|
80
91
|
Apply Fréchet derivative to vector (left specialization)
|
|
81
92
|
"""
|
|
82
|
-
def applyLeft(self, v: numpy.
|
|
93
|
+
def applyLeft(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
|
|
83
94
|
...
|
|
84
|
-
def applyRight(self, v: numpy.
|
|
95
|
+
def applyRight(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
|
|
85
96
|
...
|
|
86
|
-
def frechet(self, X: numpy.
|
|
97
|
+
def frechet(self, X: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 3]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
87
98
|
"""
|
|
88
99
|
Fréchet derivative of left-kernel M(ω) in the direction X ∈ so(3) L_M(Ω)[X] = b X + c (Ω X + X Ω) + s (db Ω + dc Ω²), with s = -½ tr(Ω X)
|
|
89
100
|
"""
|
|
90
|
-
def left(self) -> numpy.
|
|
101
|
+
def left(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
91
102
|
...
|
|
92
|
-
def right(self) -> numpy.
|
|
103
|
+
def right(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
|
|
93
104
|
...
|
gtsam/gtsam/symbol_shorthand.pyi
CHANGED
|
@@ -2,56 +2,57 @@
|
|
|
2
2
|
symbol_shorthand submodule
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
|
+
import typing
|
|
5
6
|
__all__: list[str] = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
|
|
6
|
-
def A(j:
|
|
7
|
+
def A(j: typing.SupportsInt) -> int:
|
|
7
8
|
...
|
|
8
|
-
def B(j:
|
|
9
|
+
def B(j: typing.SupportsInt) -> int:
|
|
9
10
|
...
|
|
10
|
-
def C(j:
|
|
11
|
+
def C(j: typing.SupportsInt) -> int:
|
|
11
12
|
...
|
|
12
|
-
def D(j:
|
|
13
|
+
def D(j: typing.SupportsInt) -> int:
|
|
13
14
|
...
|
|
14
|
-
def E(j:
|
|
15
|
+
def E(j: typing.SupportsInt) -> int:
|
|
15
16
|
...
|
|
16
|
-
def F(j:
|
|
17
|
+
def F(j: typing.SupportsInt) -> int:
|
|
17
18
|
...
|
|
18
|
-
def G(j:
|
|
19
|
+
def G(j: typing.SupportsInt) -> int:
|
|
19
20
|
...
|
|
20
|
-
def H(j:
|
|
21
|
+
def H(j: typing.SupportsInt) -> int:
|
|
21
22
|
...
|
|
22
|
-
def I(j:
|
|
23
|
+
def I(j: typing.SupportsInt) -> int:
|
|
23
24
|
...
|
|
24
|
-
def J(j:
|
|
25
|
+
def J(j: typing.SupportsInt) -> int:
|
|
25
26
|
...
|
|
26
|
-
def K(j:
|
|
27
|
+
def K(j: typing.SupportsInt) -> int:
|
|
27
28
|
...
|
|
28
|
-
def L(j:
|
|
29
|
+
def L(j: typing.SupportsInt) -> int:
|
|
29
30
|
...
|
|
30
|
-
def M(j:
|
|
31
|
+
def M(j: typing.SupportsInt) -> int:
|
|
31
32
|
...
|
|
32
|
-
def N(j:
|
|
33
|
+
def N(j: typing.SupportsInt) -> int:
|
|
33
34
|
...
|
|
34
|
-
def O(j:
|
|
35
|
+
def O(j: typing.SupportsInt) -> int:
|
|
35
36
|
...
|
|
36
|
-
def P(j:
|
|
37
|
+
def P(j: typing.SupportsInt) -> int:
|
|
37
38
|
...
|
|
38
|
-
def Q(j:
|
|
39
|
+
def Q(j: typing.SupportsInt) -> int:
|
|
39
40
|
...
|
|
40
|
-
def R(j:
|
|
41
|
+
def R(j: typing.SupportsInt) -> int:
|
|
41
42
|
...
|
|
42
|
-
def S(j:
|
|
43
|
+
def S(j: typing.SupportsInt) -> int:
|
|
43
44
|
...
|
|
44
|
-
def T(j:
|
|
45
|
+
def T(j: typing.SupportsInt) -> int:
|
|
45
46
|
...
|
|
46
|
-
def U(j:
|
|
47
|
+
def U(j: typing.SupportsInt) -> int:
|
|
47
48
|
...
|
|
48
|
-
def V(j:
|
|
49
|
+
def V(j: typing.SupportsInt) -> int:
|
|
49
50
|
...
|
|
50
|
-
def W(j:
|
|
51
|
+
def W(j: typing.SupportsInt) -> int:
|
|
51
52
|
...
|
|
52
|
-
def X(j:
|
|
53
|
+
def X(j: typing.SupportsInt) -> int:
|
|
53
54
|
...
|
|
54
|
-
def Y(j:
|
|
55
|
+
def Y(j: typing.SupportsInt) -> int:
|
|
55
56
|
...
|
|
56
|
-
def Z(j:
|
|
57
|
+
def Z(j: typing.SupportsInt) -> int:
|
|
57
58
|
...
|
gtsam/gtsam/utilities.pyi
CHANGED
|
@@ -2,60 +2,60 @@
|
|
|
2
2
|
utilities submodule
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
|
+
import collections.abc
|
|
5
6
|
import gtsam.gtsam
|
|
6
7
|
import gtsam.gtsam.noiseModel
|
|
7
8
|
import numpy
|
|
9
|
+
import numpy.typing
|
|
8
10
|
import typing
|
|
9
11
|
__all__: list[str] = ['allPose2s', 'allPose3s', 'createKeyList', 'createKeySet', 'createKeyVector', 'extractPoint2', 'extractPoint3', 'extractPose2', 'extractPose3', 'extractVectors', 'insertBackprojections', 'insertProjectionFactors', 'localToWorld', 'perturbPoint2', 'perturbPoint3', 'perturbPose2', 'reprojectionErrors']
|
|
10
|
-
M = typing.TypeVar("M", bound=int)
|
|
11
|
-
N = typing.TypeVar("N", bound=int)
|
|
12
12
|
def allPose2s(values: gtsam.gtsam.Values) -> gtsam.gtsam.Values:
|
|
13
13
|
...
|
|
14
14
|
def allPose3s(values: gtsam.gtsam.Values) -> gtsam.gtsam.Values:
|
|
15
15
|
...
|
|
16
16
|
@typing.overload
|
|
17
|
-
def createKeyList(I: numpy.
|
|
17
|
+
def createKeyList(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeyList:
|
|
18
18
|
...
|
|
19
19
|
@typing.overload
|
|
20
|
-
def createKeyList(s: str, I: numpy.
|
|
20
|
+
def createKeyList(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeyList:
|
|
21
21
|
...
|
|
22
22
|
@typing.overload
|
|
23
|
-
def createKeySet(I: numpy.
|
|
23
|
+
def createKeySet(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeySet:
|
|
24
24
|
...
|
|
25
25
|
@typing.overload
|
|
26
|
-
def createKeySet(s: str, I: numpy.
|
|
26
|
+
def createKeySet(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeySet:
|
|
27
27
|
...
|
|
28
28
|
@typing.overload
|
|
29
|
-
def createKeyVector(I: numpy.
|
|
29
|
+
def createKeyVector(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> list[int]:
|
|
30
30
|
...
|
|
31
31
|
@typing.overload
|
|
32
|
-
def createKeyVector(s: str, I: numpy.
|
|
32
|
+
def createKeyVector(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> list[int]:
|
|
33
33
|
...
|
|
34
|
-
def extractPoint2(values: gtsam.gtsam.Values) ->
|
|
34
|
+
def extractPoint2(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
35
35
|
...
|
|
36
|
-
def extractPoint3(values: gtsam.gtsam.Values) ->
|
|
36
|
+
def extractPoint3(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
37
37
|
...
|
|
38
|
-
def extractPose2(values: gtsam.gtsam.Values) ->
|
|
38
|
+
def extractPose2(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
39
39
|
...
|
|
40
|
-
def extractPose3(values: gtsam.gtsam.Values) ->
|
|
40
|
+
def extractPose3(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
41
41
|
...
|
|
42
|
-
def extractVectors(values: gtsam.gtsam.Values, c: str) ->
|
|
42
|
+
def extractVectors(values: gtsam.gtsam.Values, c: str) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
43
43
|
...
|
|
44
|
-
def insertBackprojections(values: gtsam.gtsam.Values, c: gtsam.gtsam.PinholeCameraCal3_S2, J: numpy.
|
|
44
|
+
def insertBackprojections(values: gtsam.gtsam.Values, c: gtsam.gtsam.PinholeCameraCal3_S2, J: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"], Z: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, n]"], depth: typing.SupportsFloat) -> None:
|
|
45
45
|
...
|
|
46
|
-
def insertProjectionFactors(graph: gtsam.gtsam.NonlinearFactorGraph, i:
|
|
46
|
+
def insertProjectionFactors(graph: gtsam.gtsam.NonlinearFactorGraph, i: typing.SupportsInt, J: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"], Z: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, n]"], model: gtsam.gtsam.noiseModel.Base, K: gtsam.gtsam.Cal3_S2, body_P_sensor: gtsam.gtsam.Pose3 = ...) -> None:
|
|
47
47
|
...
|
|
48
48
|
@typing.overload
|
|
49
49
|
def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2) -> gtsam.gtsam.Values:
|
|
50
50
|
...
|
|
51
51
|
@typing.overload
|
|
52
|
-
def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2, keys:
|
|
52
|
+
def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2, keys: collections.abc.Sequence[typing.SupportsInt]) -> gtsam.gtsam.Values:
|
|
53
53
|
...
|
|
54
|
-
def perturbPoint2(values: gtsam.gtsam.Values, sigma:
|
|
54
|
+
def perturbPoint2(values: gtsam.gtsam.Values, sigma: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
|
|
55
55
|
...
|
|
56
|
-
def perturbPoint3(values: gtsam.gtsam.Values, sigma:
|
|
56
|
+
def perturbPoint3(values: gtsam.gtsam.Values, sigma: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
|
|
57
57
|
...
|
|
58
|
-
def perturbPose2(values: gtsam.gtsam.Values, sigmaT:
|
|
58
|
+
def perturbPose2(values: gtsam.gtsam.Values, sigmaT: typing.SupportsFloat, sigmaR: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
|
|
59
59
|
...
|
|
60
|
-
def reprojectionErrors(graph: gtsam.gtsam.NonlinearFactorGraph, values: gtsam.gtsam.Values) ->
|
|
60
|
+
def reprojectionErrors(graph: gtsam.gtsam.NonlinearFactorGraph, values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
|
|
61
61
|
...
|
|
Binary file
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
gtsam/symbol_shorthand.py,sha256=HlTV-Z5aB5cXWT5AsbKOeWZIHoXQsH2W1S90ET-tidA,236
|
|
2
|
-
gtsam/gtsam.cpython-313-darwin.so,sha256=
|
|
3
|
-
gtsam/__init__.pyi,sha256=
|
|
2
|
+
gtsam/gtsam.cpython-313-darwin.so,sha256=niQTSnPUSsmbEkqEQKrINmsoe7U8baMwFLmSsrHkBwY,21539440
|
|
3
|
+
gtsam/__init__.pyi,sha256=gQZdPKOUEiLnTdbLemmMqUTQGz3k5QPkbm6yywzTqRo,50963
|
|
4
4
|
gtsam/gtsfm.py,sha256=Udlkb6o5iUk69uxBkb88-W1GLfu1g8iSuZlLu-RRU0o,202
|
|
5
5
|
gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
|
|
6
6
|
gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
|
|
7
7
|
gtsam/imuBias.py,sha256=tz3bOCFl29iMycbGFoF-ud6kRsJYjA7DJ2RJoKPFRU8,209
|
|
8
|
-
gtsam/gtsam/utilities.pyi,sha256=
|
|
9
|
-
gtsam/gtsam/gtsfm.pyi,sha256=
|
|
10
|
-
gtsam/gtsam/__init__.pyi,sha256=
|
|
11
|
-
gtsam/gtsam/so3.pyi,sha256=
|
|
12
|
-
gtsam/gtsam/imuBias.pyi,sha256=
|
|
13
|
-
gtsam/gtsam/symbol_shorthand.pyi,sha256=
|
|
8
|
+
gtsam/gtsam/utilities.pyi,sha256=9OF-8-sL2-z6nVVzQLXAsxUdqbOLxDd-RPJJxO3BZlU,3574
|
|
9
|
+
gtsam/gtsam/gtsfm.pyi,sha256=Z4CSUwKQGQkol6CZMXGm1lh-aH04MDOV2dJ2Lkt8FFg,891
|
|
10
|
+
gtsam/gtsam/__init__.pyi,sha256=graUFQb37LwtYfzXMIBHQPaaeIWtIid_hDRzHrJ6ayI,896290
|
|
11
|
+
gtsam/gtsam/so3.pyi,sha256=cjaU3Bdz7YjjjxhQtdbKSyYB5nX3tHpJ7S6drk5Vv7Q,4251
|
|
12
|
+
gtsam/gtsam/imuBias.pyi,sha256=En94zgZPWbd1rqttvlllGkYvGaTaU8KARHrTO9FY1q8,2645
|
|
13
|
+
gtsam/gtsam/symbol_shorthand.pyi,sha256=japcYwLeIDWrTCi3Y6MLhcf_Xpdv1E4T5G-WBQYe4VI,1406
|
|
14
14
|
gtsam/gtsam/lago.pyi,sha256=XP_iLWJJ8c8jnYidbxmh8iRzo9FiZcEM5TR73JM_bkE,562
|
|
15
|
-
gtsam/gtsam/noiseModel/__init__.pyi,sha256=
|
|
16
|
-
gtsam/gtsam/noiseModel/mEstimator.pyi,sha256=
|
|
15
|
+
gtsam/gtsam/noiseModel/__init__.pyi,sha256=9Fv4vSpTPySSrY2V_oqL5wlvPlrgSQP1kI0_LGkIDdY,8982
|
|
16
|
+
gtsam/gtsam/noiseModel/mEstimator.pyi,sha256=XnI9oX-347qaSEQDxJ3p146GGZpT_nIlEqTODRx9z30,11477
|
|
17
17
|
gtsam/tests/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
|
|
18
18
|
gtsam/tests/test_OdometryExample.py,sha256=aO-ciYNbKo8ru0bxexEtlj4xN9WGiSBlLOQnRkCCAx0,2094
|
|
19
19
|
gtsam/tests/test_KarcherMeanFactor.py,sha256=L3_VAOljyRDmyOjOlZqnW-5apqufsDd8UnLIZ-d-_VE,2369
|
|
@@ -129,7 +129,7 @@ gtsam/utils/test_case.py,sha256=3wIqAW5_smes95XUJgUjD4v3FXACYSVzQ1l6MMdwSkA,1848
|
|
|
129
129
|
gtsam/utils/logging_optimizer.py,sha256=tRnzQKV4eT5djS0Ojy5J7OGu7oVRjZw7Jhjrx_VQVTU,4417
|
|
130
130
|
gtsam/utils/generate_trajectory.py,sha256=_1TZWhpRKj8ha0FOEmqUpEzAt3KLgwqyZJ4ueFD2jmE,2663
|
|
131
131
|
gtsam/.dylibs/libboost_thread.dylib,sha256=aT1DCt1Kvw1A2w2mRHIJhZRFrYmoDaI5xYM6wEt86L8,137200
|
|
132
|
-
gtsam/.dylibs/
|
|
132
|
+
gtsam/.dylibs/libgtsam.4.3a0.dev202510101307.dylib,sha256=obzwWKrl6_TE-1GJeYJgksN5sFmYBA2hS4u5kqjxIjA,6016960
|
|
133
133
|
gtsam/.dylibs/libboost_regex.dylib,sha256=XWw3H3ehJjFuFVSSDGo2lyKOIsoTQ-0Aaf1ekhsQJfY,356464
|
|
134
134
|
gtsam/.dylibs/libboost_serialization.dylib,sha256=7OW78djID14u2YB_F_TuXomOIsEpt8I7RnCAGuGmwCc,418288
|
|
135
135
|
gtsam/.dylibs/libboost_timer.dylib,sha256=leVXIyCdydip4vwIm-Ghrt6UGy_Q-yhL2f8ITyfRku0,81520
|
|
@@ -138,7 +138,7 @@ gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=pNZtgCIaV7_dC0WPXobOc8sNvd_0WQo
|
|
|
138
138
|
gtsam/.dylibs/libmetis-gtsam.dylib,sha256=Od5V_NOZKhxu5cEw1wMfGxk3l0_2LEhV-GkEwnqyx4Q,449504
|
|
139
139
|
gtsam/.dylibs/libboost_atomic.dylib,sha256=AbG9FmLd7biQVvDL9F7_sLOEgmhgj5bwxX98c5jnVVc,104160
|
|
140
140
|
gtsam/.dylibs/libboost_date_time.dylib,sha256=zkeDyIl7aGu1K5avCbDjtJURdIPT8llHnNZ-G7N-_Cc,35008
|
|
141
|
-
gtsam/.dylibs/
|
|
141
|
+
gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202510101307.dylib,sha256=4g_k4MHA8wyXiwjjfCcIkYsFwgbSTpTWOqvghw_TZUM,1623248
|
|
142
142
|
gtsam/.dylibs/libboost_system.dylib,sha256=W2i7A0l2E-Kkxdzs6E4Fr0S3hXTfBJOJ0WW32M3Fqh8,34992
|
|
143
143
|
gtsam/.dylibs/libboost_chrono.dylib,sha256=WTFx4Mqt77f3jd9cE11WxBAABvcmj23DbMxXwXkTz2o,79824
|
|
144
144
|
gtsam/examples/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
|
|
@@ -251,14 +251,14 @@ gtsam/Data/Balbianello/BalbianelloMedium-4.key.gz,sha256=P6tu3JmA0NKlcFYdgYczTOH
|
|
|
251
251
|
gtsam/Data/Balbianello/BalbianelloMedium-1.key.gz,sha256=RgT7tVXXOwvDug20TW-9xtoeO3dSSPMF1n9DaKxdrIw,332878
|
|
252
252
|
gtsam/Data/Balbianello/BalbianelloMedium-3.key.gz,sha256=yNMcyqwZCOj9FG-6qXQ9xhJjpM135cTBJYlOUBG0rnQ,296236
|
|
253
253
|
gtsam/Data/Balbianello/BalbianelloMedium-5.key.gz,sha256=4veDrxRdLH8k1DIhgj1984MitZ7nAWoXDWTWyXuu7Lg,241361
|
|
254
|
+
gtsam_develop-4.3a0.dev202510101307.dist-info/RECORD,,
|
|
255
|
+
gtsam_develop-4.3a0.dev202510101307.dist-info/WHEEL,sha256=oqGJCpG61FZJmvyZ3C_0aCv-2mdfcY9e3fXvyUNmWfM,136
|
|
256
|
+
gtsam_develop-4.3a0.dev202510101307.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
257
|
+
gtsam_develop-4.3a0.dev202510101307.dist-info/METADATA,sha256=zkRNpNDrzs46mZrfxZwrud0sPIpXdAKzlpqeUtbkLWI,8808
|
|
254
258
|
gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
|
|
255
|
-
gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256=
|
|
259
|
+
gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256=VLA5bHx2Vc5a1eusadL8NummM_3_8gFa19TJoK1nPN8,2117920
|
|
256
260
|
gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
261
|
gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
|
|
258
262
|
gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
263
|
gtsam_unstable/examples/LocalizationExample.py,sha256=na47I1PQ_5Tenj8Wg2LBg3GaqP32O4yEb8jtRWKu0P8,2882
|
|
260
264
|
gtsam_unstable/examples/TimeOfArrivalExample.py,sha256=uky5ps4Ng83C0Q_s2EAc64Af6iztQjXXdj3ahifRXoI,3737
|
|
261
|
-
gtsam_develop-4.3a0.dev202510101133.dist-info/RECORD,,
|
|
262
|
-
gtsam_develop-4.3a0.dev202510101133.dist-info/WHEEL,sha256=oqGJCpG61FZJmvyZ3C_0aCv-2mdfcY9e3fXvyUNmWfM,136
|
|
263
|
-
gtsam_develop-4.3a0.dev202510101133.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
264
|
-
gtsam_develop-4.3a0.dev202510101133.dist-info/METADATA,sha256=T3XGernmVl280hn2qvgh7P348YAovKBZFlk5Vi3ffQ8,8808
|
|
Binary file
|
|
File without changes
|
|
File without changes
|