gtsam-develop 4.3a0.dev202505300745__cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 4.3a0.dev202506050756__cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.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/__init__.pyi +12 -12
- gtsam/gtsam/__init__.pyi +2 -2
- gtsam/gtsam.cpython-311-aarch64-linux-gnu.so +0 -0
- {gtsam_develop-4.3a0.dev202505300745.dist-info → gtsam_develop-4.3a0.dev202506050756.dist-info}/METADATA +1 -1
- {gtsam_develop-4.3a0.dev202505300745.dist-info → gtsam_develop-4.3a0.dev202506050756.dist-info}/RECORD +10 -10
- gtsam_develop.libs/{libgtsam-3738f4dc.so.4.3a0.dev202505300745 → libgtsam-3738f4dc.so.4.3a0.dev202506050756} +0 -0
- gtsam_develop.libs/{libgtsam_unstable-9cc685c5.so.4.3a0.dev202505300745 → libgtsam_unstable-9cc685c5.so.4.3a0.dev202506050756} +0 -0
- gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so +0 -0
- {gtsam_develop-4.3a0.dev202505300745.dist-info → gtsam_develop-4.3a0.dev202506050756.dist-info}/WHEEL +0 -0
- {gtsam_develop-4.3a0.dev202505300745.dist-info → gtsam_develop-4.3a0.dev202506050756.dist-info}/top_level.txt +0 -0
gtsam/__init__.pyi
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
Module definition file for GTSAM
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
|
+
from builtins import dict as IndexPairSetMap
|
|
5
6
|
from builtins import dict as MatchIndicesMap
|
|
6
7
|
from builtins import dict as KeyPairDoubleMap
|
|
7
|
-
from builtins import
|
|
8
|
-
from builtins import list as
|
|
8
|
+
from builtins import list as SfmCameras
|
|
9
|
+
from builtins import list as SfmMeasurementVector
|
|
10
|
+
from builtins import list as Pose3Pairs
|
|
11
|
+
from builtins import list as Point2Vector
|
|
12
|
+
from builtins import list as Rot3Vector
|
|
13
|
+
from builtins import list as BinaryMeasurementsRot3
|
|
9
14
|
from builtins import list as KeypointsVector
|
|
10
15
|
from builtins import list as IndexPairVector
|
|
16
|
+
from builtins import list as BetweenFactorPose3s
|
|
17
|
+
from builtins import list as Point3Pairs
|
|
11
18
|
from builtins import list as Point2Pairs
|
|
19
|
+
from builtins import list as Pose3Vector
|
|
20
|
+
from builtins import list as BinaryMeasurementsUnit3
|
|
12
21
|
from builtins import list as SfmTrack2dVector
|
|
13
|
-
from builtins import list as SfmTracks
|
|
14
|
-
from builtins import list as SfmMeasurementVector
|
|
15
22
|
from builtins import list as BinaryMeasurementsPoint3
|
|
16
|
-
from builtins import list as BinaryMeasurementsRot3
|
|
17
|
-
from builtins import list as BetweenFactorPose3s
|
|
18
|
-
from builtins import list as Point2Vector
|
|
19
23
|
from builtins import list as BetweenFactorPose2s
|
|
20
|
-
from builtins import list as Pose3Pairs
|
|
21
|
-
from builtins import list as Rot3Vector
|
|
22
24
|
from builtins import list as Pose2Pairs
|
|
23
25
|
from builtins import list as KeyVector
|
|
24
|
-
from builtins import list as
|
|
25
|
-
from builtins import list as BinaryMeasurementsUnit3
|
|
26
|
-
from builtins import list as Pose3Vector
|
|
26
|
+
from builtins import list as SfmTracks
|
|
27
27
|
from gtsam.gtsam import AHRSFactor
|
|
28
28
|
from gtsam.gtsam import AcceleratingScenario
|
|
29
29
|
from gtsam.gtsam import AlgebraicDecisionTreeKey
|
gtsam/gtsam/__init__.pyi
CHANGED
|
@@ -1005,7 +1005,7 @@ class Cal3_S2(Cal3):
|
|
|
1005
1005
|
@typing.overload
|
|
1006
1006
|
def uncalibrate(self, p: numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
1007
1007
|
"""
|
|
1008
|
-
Convert intrinsic coordinates xy to image coordinates uv, fixed
|
|
1008
|
+
Convert intrinsic coordinates xy to image coordinates uv, fixed derivatives.
|
|
1009
1009
|
|
|
1010
1010
|
Args:
|
|
1011
1011
|
p: point in intrinsic coordinates
|
|
@@ -1015,7 +1015,7 @@ class Cal3_S2(Cal3):
|
|
|
1015
1015
|
@typing.overload
|
|
1016
1016
|
def uncalibrate(self, p: numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]], Dcal: numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]], Dp: numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
1017
1017
|
"""
|
|
1018
|
-
Convert intrinsic coordinates xy to image coordinates uv, fixed
|
|
1018
|
+
Convert intrinsic coordinates xy to image coordinates uv, fixed derivatives.
|
|
1019
1019
|
|
|
1020
1020
|
Args:
|
|
1021
1021
|
p: point in intrinsic coordinates
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
|
|
2
|
-
gtsam/__init__.pyi,sha256=
|
|
3
|
-
gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=
|
|
2
|
+
gtsam/__init__.pyi,sha256=zJZcdBX6lz-OmwLrk8dNJHMEorjqU-8tqORgLlIAZo4,43159
|
|
3
|
+
gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=HJskgeVllWb_4kkWHvWE5PFsE6v-H5whBrdWIOsvcws,22459281
|
|
4
4
|
gtsam/gtsfm.py,sha256=Udlkb6o5iUk69uxBkb88-W1GLfu1g8iSuZlLu-RRU0o,202
|
|
5
5
|
gtsam/imuBias.py,sha256=tz3bOCFl29iMycbGFoF-ud6kRsJYjA7DJ2RJoKPFRU8,209
|
|
6
6
|
gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
|
|
@@ -114,7 +114,7 @@ gtsam/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
114
114
|
gtsam/examples/gtsam_plotly.py,sha256=bTXAzZ3i_RunKrdGwFLsMsetYYleQrzDa50ekmrt_nQ,17073
|
|
115
115
|
gtsam/examples/plot_city10000.py,sha256=xsM1HFlcBn6TqEqQtZjlOl0WQI6tVZMgjtKdYIusbyE,3353
|
|
116
116
|
gtsam/examples/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
|
|
117
|
-
gtsam/gtsam/__init__.pyi,sha256=
|
|
117
|
+
gtsam/gtsam/__init__.pyi,sha256=fKma4_0Rdt40HfFyF8fg2oNp1oldgmtc2KoSd5eqhxM,723228
|
|
118
118
|
gtsam/gtsam/gtsfm.pyi,sha256=Onoh4CRaSYIQ0FID0vBkZeV7ESIhc2fh4rJGgaPY-ug,702
|
|
119
119
|
gtsam/gtsam/imuBias.pyi,sha256=gD6w5kd9xpO4uBEpfNym_3LjW67MV7HPQRYOOoDPysQ,2478
|
|
120
120
|
gtsam/gtsam/lago.pyi,sha256=-VzJaQ1ho25n7S4VjbugWmPNUtKeMsoESifX9K8l2Yo,551
|
|
@@ -246,17 +246,17 @@ gtsam_develop.libs/libboost_system-0f8f8a6a.so.1.87.0,sha256=vG7c-nCNDFk9UrmGaYj
|
|
|
246
246
|
gtsam_develop.libs/libboost_thread-e6217d1e.so.1.87.0,sha256=E2jFMpQ_xgH8mzebJPVAo9JKwZRF0cTUZx4q4aDVVKo,357745
|
|
247
247
|
gtsam_develop.libs/libboost_timer-c03b5720.so.1.87.0,sha256=C-jrqHaflQqKfg88hGhzFRof8w0WX5Lw-N56zLtD3CE,133249
|
|
248
248
|
gtsam_develop.libs/libcephes-gtsam-906422bf.so.1.0.0,sha256=aX4Q_2V2F1uwqCEdNkLhzOzgGWLf2cTeZn9OJeRcSvY,264913
|
|
249
|
-
gtsam_develop.libs/libgtsam-3738f4dc.so.4.3a0.
|
|
250
|
-
gtsam_develop.libs/libgtsam_unstable-9cc685c5.so.4.3a0.
|
|
249
|
+
gtsam_develop.libs/libgtsam-3738f4dc.so.4.3a0.dev202506050756,sha256=UWmhJOmlAYg8MoM8fliVM3YGYoOGlgKzqqmSTK_vdWI,10773265
|
|
250
|
+
gtsam_develop.libs/libgtsam_unstable-9cc685c5.so.4.3a0.dev202506050756,sha256=lBq_wvaG5nawK4o-oA0kdHffvJYbry5zXt_LvPx_hkA,2585473
|
|
251
251
|
gtsam_develop.libs/libmetis-gtsam-b7310f3a.so,sha256=6Y9LebAEnr8OFCzKGxK2KADmtBGIq3XnzDpXF7jMX4A,546689
|
|
252
252
|
gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
|
|
253
|
-
gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so,sha256=
|
|
253
|
+
gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so,sha256=lVuBmdTeEjh23vKe1WQPvMvcDYS8FZBTaQ0JoKosFBo,2715681
|
|
254
254
|
gtsam_unstable/examples/LocalizationExample.py,sha256=na47I1PQ_5Tenj8Wg2LBg3GaqP32O4yEb8jtRWKu0P8,2882
|
|
255
255
|
gtsam_unstable/examples/TimeOfArrivalExample.py,sha256=uky5ps4Ng83C0Q_s2EAc64Af6iztQjXXdj3ahifRXoI,3737
|
|
256
256
|
gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
257
|
gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
258
258
|
gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
|
|
259
|
-
gtsam_develop-4.3a0.
|
|
260
|
-
gtsam_develop-4.3a0.
|
|
261
|
-
gtsam_develop-4.3a0.
|
|
262
|
-
gtsam_develop-4.3a0.
|
|
259
|
+
gtsam_develop-4.3a0.dev202506050756.dist-info/METADATA,sha256=bUquZfXPfJ24l4Ck-Bd8CoxyNyY_mKp6JP8pb0uB36s,7767
|
|
260
|
+
gtsam_develop-4.3a0.dev202506050756.dist-info/WHEEL,sha256=QJg38rE8f0PT7_ZWlFpvwOoUFGenUbSJhXM-6SbDiao,153
|
|
261
|
+
gtsam_develop-4.3a0.dev202506050756.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
262
|
+
gtsam_develop-4.3a0.dev202506050756.dist-info/RECORD,,
|
|
index a0e22f4..6d459f5 100755
|
|
|
Binary file
|
|
index aef4761..33ddbe9 100755
|
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|