gtsam-develop 4.3a0.dev202508212343__cp313-cp313-macosx_10_15_x86_64.whl → 4.3a0.dev202508241542__cp313-cp313-macosx_10_15_x86_64.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.dev202508212343.dylib → libgtsam.4.3a0.dev202508241542.dylib} +0 -0
- gtsam/.dylibs/{libgtsam_unstable.4.3a0.dev202508212343.dylib → libgtsam_unstable.4.3a0.dev202508241542.dylib} +0 -0
- gtsam/__init__.pyi +14 -14
- gtsam/gtsam.cpython-313-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202508212343.dist-info → gtsam_develop-4.3a0.dev202508241542.dist-info}/METADATA +25 -12
- {gtsam_develop-4.3a0.dev202508212343.dist-info → gtsam_develop-4.3a0.dev202508241542.dist-info}/RECORD +9 -9
- gtsam_unstable/gtsam_unstable.cpython-313-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202508212343.dist-info → gtsam_develop-4.3a0.dev202508241542.dist-info}/WHEEL +0 -0
- {gtsam_develop-4.3a0.dev202508212343.dist-info → gtsam_develop-4.3a0.dev202508241542.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
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 MatchIndicesMap
|
|
6
5
|
from builtins import dict as IndexPairSetMap
|
|
7
6
|
from builtins import dict as KeyPairDoubleMap
|
|
8
|
-
from builtins import
|
|
9
|
-
from builtins import list as
|
|
10
|
-
from builtins import list as
|
|
7
|
+
from builtins import dict as MatchIndicesMap
|
|
8
|
+
from builtins import list as BinaryMeasurementsPoint3
|
|
9
|
+
from builtins import list as SfmTrack2dVector
|
|
10
|
+
from builtins import list as Pose3Vector
|
|
11
|
+
from builtins import list as KeyVector
|
|
11
12
|
from builtins import list as Point2Vector
|
|
13
|
+
from builtins import list as SfmTracks
|
|
14
|
+
from builtins import list as Point3Pairs
|
|
15
|
+
from builtins import list as Pose3Pairs
|
|
16
|
+
from builtins import list as SfmCameras
|
|
12
17
|
from builtins import list as BinaryMeasurementsUnit3
|
|
13
|
-
from builtins import list as KeypointsVector
|
|
14
18
|
from builtins import list as Pose2Pairs
|
|
19
|
+
from builtins import list as BinaryMeasurementsRot3
|
|
15
20
|
from builtins import list as SfmMeasurementVector
|
|
16
|
-
from builtins import list as
|
|
17
|
-
from builtins import list as
|
|
18
|
-
from builtins import list as
|
|
19
|
-
from builtins import list as
|
|
21
|
+
from builtins import list as BetweenFactorPose2s
|
|
22
|
+
from builtins import list as KeypointsVector
|
|
23
|
+
from builtins import list as Point2Pairs
|
|
24
|
+
from builtins import list as IndexPairVector
|
|
20
25
|
from builtins import list as BetweenFactorPose3s
|
|
21
26
|
from builtins import list as Rot3Vector
|
|
22
|
-
from builtins import list as BetweenFactorPose2s
|
|
23
|
-
from builtins import list as Pose3Pairs
|
|
24
|
-
from builtins import list as BinaryMeasurementsRot3
|
|
25
|
-
from builtins import list as Pose3Vector
|
|
26
|
-
from builtins import list as KeyVector
|
|
27
27
|
from gtsam.gtsam import AHRSFactor
|
|
28
28
|
from gtsam.gtsam import AcceleratingScenario
|
|
29
29
|
from gtsam.gtsam import AlgebraicDecisionTreeKey
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gtsam-develop
|
|
3
|
-
Version: 4.3a0.
|
|
3
|
+
Version: 4.3a0.dev202508241542
|
|
4
4
|
Summary: Georgia Tech Smoothing And Mapping library
|
|
5
5
|
Home-page: https://gtsam.org/
|
|
6
6
|
Author: Frank Dellaert et. al.
|
|
@@ -45,14 +45,13 @@ mapping (SAM) in robotics and vision, using Factor Graphs and Bayes
|
|
|
45
45
|
Networks as the underlying computing paradigm rather than sparse
|
|
46
46
|
matrices.
|
|
47
47
|
|
|
48
|
-
The current support matrix is:
|
|
49
|
-
|
|
50
|
-
| Platform | Compiler | Build Status |
|
|
51
|
-
| :----------------: | :-------: | :------------------------------------------------------------------------------: |
|
|
52
|
-
| Ubuntu 22.04/24.04 | gcc/clang |  |
|
|
53
|
-
| macOS | clang |  |
|
|
54
|
-
| Windows | MSVC |  |
|
|
55
48
|
|
|
49
|
+
<!-- Main CI Badges (develop branch) -->
|
|
50
|
+
| CI Status | Platform | Compiler |
|
|
51
|
+
|:----------|:---------|:---------|
|
|
52
|
+
| [](https://github.com/borglab/gtsam/actions/workflows/build-python.yml?query=branch%3Adevelop) | Ubuntu 22.04, MacOS 13-14, Windows | gcc/clang,MSVC |
|
|
53
|
+
| [](https://github.com/borglab/gtsam/actions/workflows/vcpkg.yml?query=branch%3Adevelop) | Latest Windows/Ubuntu/Mac | - |
|
|
54
|
+
| [](https://github.com/borglab/gtsam/actions/workflows/build-cibw.yml?query=branch%3Adevelop) | See [pypi files](https://pypi.org/project/gtsam-develop/#files); no Windows| - |
|
|
56
55
|
|
|
57
56
|
On top of the C++ library, GTSAM includes [wrappers for MATLAB & Python](#wrappers).
|
|
58
57
|
|
|
@@ -66,15 +65,29 @@ In the root library folder execute:
|
|
|
66
65
|
mkdir build
|
|
67
66
|
cd build
|
|
68
67
|
cmake ..
|
|
69
|
-
make check
|
|
68
|
+
make check # optional, runs all unit tests
|
|
70
69
|
make install
|
|
71
70
|
```
|
|
72
71
|
|
|
73
72
|
Prerequisites:
|
|
74
73
|
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
74
|
+
- A modern compiler:
|
|
75
|
+
- Mac: at least xcode-14.2
|
|
76
|
+
- Linux: at least clang-11 or gcc-9
|
|
77
|
+
- Windows: at least msvc-14.2
|
|
78
|
+
- [CMake](http://www.cmake.org/cmake/resources/software.html) >= 3.0
|
|
79
|
+
- Ubuntu: `sudo apt-get install cmake`
|
|
80
|
+
|
|
81
|
+
Optional Boost prerequisite:
|
|
82
|
+
|
|
83
|
+
Boost is now *optional*. Two cmake flags govern its behavior:
|
|
84
|
+
- `GTSAM_USE_BOOST_FEATURES` = `ON|OFF`: some of our timers and concept checking in the tests still depend on boost.
|
|
85
|
+
- `GTSAM_ENABLE_BOOST_SERIALIZATION` = `ON|OFF`: serialization of factor graphs, factors, etc still is done using boost
|
|
86
|
+
|
|
87
|
+
If one or both of these flags are `ON`, you need to install [Boost](http://www.boost.org/users/download/) >= 1.70
|
|
88
|
+
- Mac: `brew install boost`
|
|
89
|
+
- Ubuntu: `sudo apt-get install libboost-all-dev`
|
|
90
|
+
- Windows: We highly recommend using the [vcpkg](https://github.com/microsoft/vcpkg) package manager. For other installation methods or troubleshooting, please see the guidance in the [cmake/HandleBoost.cmake](cmake/HandleBoost.cmake) script.
|
|
78
91
|
|
|
79
92
|
Optional prerequisites - used automatically if findable by CMake:
|
|
80
93
|
|
|
@@ -1,6 +1,6 @@
|
|
|
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=W_qyrfgxZQZnKRXHAcB7n1cyQkWRJGYF3sCsNfS9hqc,27840880
|
|
3
|
+
gtsam/__init__.pyi,sha256=iYTwApyRgQUUzPB1MesGHwJE_5GfzTTHYscvbqCNuMA,44359
|
|
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
|
|
@@ -129,13 +129,13 @@ 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=Zdt9bJonKZ6UqOr9vX46yIR7Ii7FQMAb25KFtictZxY,140096
|
|
132
|
-
gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508212343.dylib,sha256=QnrwkNkjxhv3A8_N7kDTdmFcZ79Gwk_kvClEUZCqEDc,1884704
|
|
133
132
|
gtsam/.dylibs/libboost_regex.dylib,sha256=OuKqIt11T7pWAk6xIICf7IqZWnp2hL8mf5Yv21l53H0,374624
|
|
133
|
+
gtsam/.dylibs/libgtsam.4.3a0.dev202508241542.dylib,sha256=kmz3H2Yp7jmkEJ1jEjFUeELc7iSZ5Q02482wmKbxMUw,6880672
|
|
134
|
+
gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508241542.dylib,sha256=K36iFhq8esJf-gZZB7O6hxzBzK_QAtmw8O7JXCSC_I8,1884704
|
|
134
135
|
gtsam/.dylibs/libboost_serialization.dylib,sha256=TfkeoS_P_8cWumat96Q4LuMnGB_YFaSC-obPYM-JTao,420944
|
|
135
136
|
gtsam/.dylibs/libboost_timer.dylib,sha256=cp2NxSdL2hk5jTL63h41uzLfCKJQ3uRyCU8WhfoEl0g,82416
|
|
136
137
|
gtsam/.dylibs/libboost_filesystem.dylib,sha256=Fuh5k1wjz7-McEYOYjZGKedrYGsboXzTrf7GyXiEQiQ,199712
|
|
137
138
|
gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=ISA3p6BaPYULDTy4lb9OL6526GfF1gM2n5EE9rvgNKs,209680
|
|
138
|
-
gtsam/.dylibs/libgtsam.4.3a0.dev202508212343.dylib,sha256=7Zel2lcLdGNOPpQMXz50SAuaI0ozl-bN8saVG5n7eQI,6880672
|
|
139
139
|
gtsam/.dylibs/libmetis-gtsam.dylib,sha256=4TdsUZUkBMeyE0Y-xnPH-CibvImkJeKUDSiHsI6fm8Y,532192
|
|
140
140
|
gtsam/.dylibs/libboost_atomic.dylib,sha256=jthy3MSjmFpFmc2LPKzw2TXbK5dY8NbIETJd5JqiIOI,104400
|
|
141
141
|
gtsam/.dylibs/libboost_date_time.dylib,sha256=gBEWbnfqECB3b47buz7qxcWANckV3uqLs-LF4jFs2kI,35008
|
|
@@ -250,12 +250,12 @@ gtsam/Data/Balbianello/BalbianelloMedium-4.key.gz,sha256=P6tu3JmA0NKlcFYdgYczTOH
|
|
|
250
250
|
gtsam/Data/Balbianello/BalbianelloMedium-1.key.gz,sha256=RgT7tVXXOwvDug20TW-9xtoeO3dSSPMF1n9DaKxdrIw,332878
|
|
251
251
|
gtsam/Data/Balbianello/BalbianelloMedium-3.key.gz,sha256=yNMcyqwZCOj9FG-6qXQ9xhJjpM135cTBJYlOUBG0rnQ,296236
|
|
252
252
|
gtsam/Data/Balbianello/BalbianelloMedium-5.key.gz,sha256=4veDrxRdLH8k1DIhgj1984MitZ7nAWoXDWTWyXuu7Lg,241361
|
|
253
|
-
gtsam_develop-4.3a0.
|
|
254
|
-
gtsam_develop-4.3a0.
|
|
255
|
-
gtsam_develop-4.3a0.
|
|
256
|
-
gtsam_develop-4.3a0.
|
|
253
|
+
gtsam_develop-4.3a0.dev202508241542.dist-info/RECORD,,
|
|
254
|
+
gtsam_develop-4.3a0.dev202508241542.dist-info/WHEEL,sha256=_sJloPpIQ7em-9oqlhRS-kfRCmXJeAFP2INLE3hGoGM,138
|
|
255
|
+
gtsam_develop-4.3a0.dev202508241542.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
256
|
+
gtsam_develop-4.3a0.dev202508241542.dist-info/METADATA,sha256=2P1cfMoiBO7RKP5qhdRppRy53HI4YnR26DvtVRa14eQ,8808
|
|
257
257
|
gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
|
|
258
|
-
gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256
|
|
258
|
+
gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256=bklcz0tGiPVYCH_9ln06ROQcat-2ouNrdxkFd4YFlSs,3197584
|
|
259
259
|
gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
260
260
|
gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
|
|
261
261
|
gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
Binary file
|
|
File without changes
|
|
File without changes
|