gtsam/gtsam_unstable/slam
Fan Jiang ed098eaec6 Cleanup some includes and fix cassert 2024-12-11 14:05:05 -05:00
..
doc Moved AHRS to gtsam_unstable 2013-05-20 23:16:44 +00:00
tests Fix windows tests 2023-09-25 20:33:35 +03:00
AHRS.cpp replaced fabs with c++11 std::abs 2019-09-18 18:30:26 -04:00
AHRS.h replace ifndefs with pragma once 2022-02-20 02:53:15 -05:00
BetweenFactorEM.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
BiasedGPSFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
CMakeLists.txt Working on standardizing/simplifying building unit tests and examples. Much simpler cmake function to add a glob of tests, doing away with convenience libraries, and removing other options that we never change from their defaults. 2014-02-13 01:34:31 -05:00
DummyFactor.cpp shared_ptr, make_shared, allocate_shared 2023-01-22 08:40:02 -08:00
DummyFactor.h replaced casts 2023-01-22 08:40:02 -08:00
EquivInertialNavFactor_GlobalVel.h Got rid or ifdefed many boost headers 2023-02-05 20:45:54 -08:00
EquivInertialNavFactor_GlobalVel_NoBias.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
GaussMarkov1stOrderFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
InertialNavFactor_GlobalVelocity.h Got rid or ifdefed many boost headers 2023-02-05 20:45:54 -08:00
InvDepthFactor3.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
InvDepthFactorVariant1.h Got rid or ifdefed many boost headers 2023-02-05 20:45:54 -08:00
InvDepthFactorVariant2.h Got rid or ifdefed many boost headers 2023-02-05 20:45:54 -08:00
InvDepthFactorVariant3.h Got rid or ifdefed many boost headers 2023-02-05 20:45:54 -08:00
LocalOrientedPlane3Factor.cpp unstable/slam 2023-01-21 09:27:20 -08:00
LocalOrientedPlane3Factor.h return before using statement 2023-01-20 18:06:55 -08:00
Mechanization_bRn2.cpp fix doxygen warnings due to groups and and incorrect filenames 2022-07-26 16:38:51 -04:00
Mechanization_bRn2.h fix doxygen warnings due to groups and and incorrect filenames 2022-07-26 16:38:51 -04:00
MultiProjectionFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
PartialPriorFactor.h Cleanup some includes and fix cassert 2024-12-11 14:05:05 -05:00
PoseBetweenFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
PosePriorFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
PoseToPointFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
ProjectionFactorPPP.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
ProjectionFactorPPPC.h Fix windows tests 2023-09-25 20:33:35 +03:00
ProjectionFactorRollingShutter.cpp unstable/slam 2023-01-21 09:27:20 -08:00
ProjectionFactorRollingShutter.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
README.md renamed README 2021-12-04 11:51:23 -05:00
RelativeElevationFactor.cpp all of gtsam compiles and tests pass with ptrs instead of optional matrix refererences 2023-01-20 18:06:55 -08:00
RelativeElevationFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
SmartProjectionPoseFactorRollingShutter.h Fix windows tests 2023-09-25 20:33:35 +03:00
SmartRangeFactor.h replaced casts 2023-01-22 08:40:02 -08:00
SmartStereoProjectionFactor.h More emplace_shared usage 2023-02-06 01:20:27 -08:00
SmartStereoProjectionFactorPP.cpp Cleanup some includes and fix cassert 2024-12-11 14:05:05 -05:00
SmartStereoProjectionFactorPP.h undo changes 2023-06-21 09:55:52 -04:00
SmartStereoProjectionPoseFactor.cpp Cleanup some includes and fix cassert 2024-12-11 14:05:05 -05:00
SmartStereoProjectionPoseFactor.h Fixed warnings that arise from stricter compiler flags 2023-02-11 12:32:50 -08:00
TOAFactor.h shared_ptr, make_shared, allocate_shared 2023-01-22 08:40:02 -08:00
TSAMFactors.h shared_ptr, make_shared, allocate_shared 2023-01-22 08:40:02 -08:00
TransformBtwRobotsUnaryFactor.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
TransformBtwRobotsUnaryFactorEM.h gtsam_unstable, test folders ifdefs 2023-01-22 22:14:50 -08:00
serialization.cpp removed deprecated code 2023-01-20 22:50:05 -08:00
serialization.h remove trailing spaces 2019-02-11 10:58:34 -05:00

README.md

SLAM Factors

SmartFactors

These are "structure-less" factors, i.e., rather than introducing a new variable for an observed 3D point or landmark, a single factor is created that provides a multi-view constraint on several poses and/or cameras.

SmartRangeFactor

An experiment in creating a structure-less 2D range-SLAM factor with range-only measurements. It uses a sophisticated triangulate logic based on circle intersections.

SmartStereoProjectionFactor

Version of SmartProjectionFactor for stereo observations, specializes SmartFactorBase for CAMERA == StereoCamera.

TODO: a lot of commented out code and could move a lot to .cpp file.

SmartStereoProjectionPoseFactor

Derives from SmartStereoProjectionFactor but adds an array of Cal3_S2Stereo calibration objects .

TODO: Again, as no template arguments, we could move a lot to .cpp file.

SmartStereoProjectionFactorPP

Similar SmartStereoProjectionPoseFactor but additionally adds an array of body_P_cam poses. The dimensions seem to be hardcoded and the types defined in the SmartFactorBase have been re-defined.
The body_P_cam poses are optimized here!

TODO: See above, same issues as SmartStereoProjectionPoseFactor.

SmartProjectionPoseFactorRollingShutter

Is templated on a CAMERA type and derives from SmartProjectionFactor.

This factor optimizes two consecutive poses of a body assuming a rolling shutter model of the camera with given readout time. The factor requires that values contain (for each 2D observation) two consecutive camera poses from which the 2D observation pose can be interpolated.

TODO: the dimensions seem to be hardcoded and the types defined in the SmartFactorBase have been re-defined. Also, possibly a lot of copy/paste computation of things that (should) happen in base class.