gtsam/gtsam_unstable/slam
Varun Agrawal 1f6816d974 Merge branch 'develop' into fix/doxygen 2022-08-22 17:37:03 -04:00
..
doc Moved AHRS to gtsam_unstable 2013-05-20 23:16:44 +00:00
tests
AHRS.cpp
AHRS.h
BetweenFactorEM.h
BiasedGPSFactor.h
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
DummyFactor.h
EquivInertialNavFactor_GlobalVel.h
EquivInertialNavFactor_GlobalVel_NoBias.h Fix unstable c++ examples 2022-01-02 14:59:28 -05:00
GaussMarkov1stOrderFactor.h
InertialNavFactor_GlobalVelocity.h replaced boost with std for placeholders, bind and function 2021-07-10 21:01:20 -04:00
InvDepthFactor3.h
InvDepthFactorVariant1.h
InvDepthFactorVariant2.h
InvDepthFactorVariant3.h
LocalOrientedPlane3Factor.cpp
LocalOrientedPlane3Factor.h
Mechanization_bRn2.cpp
Mechanization_bRn2.h
MultiProjectionFactor.h
PartialPriorFactor.h Fix Rot3::LocalCoordinates runtime error when using Cayley map 2021-03-26 17:29:47 -04:00
PoseBetweenFactor.h
PosePriorFactor.h update the groups 2022-07-26 16:44:30 -04:00
PoseToPointFactor.h
ProjectionFactorPPP.h
ProjectionFactorPPPC.h
ProjectionFactorRollingShutter.cpp
ProjectionFactorRollingShutter.h
README.md
RelativeElevationFactor.cpp
RelativeElevationFactor.h Fix override warnings: modernize-use-override 2021-01-28 23:02:13 -05:00
SmartProjectionPoseFactorRollingShutter.h
SmartRangeFactor.h
SmartStereoProjectionFactor.h
SmartStereoProjectionFactorPP.cpp
SmartStereoProjectionFactorPP.h
SmartStereoProjectionPoseFactor.cpp
SmartStereoProjectionPoseFactor.h
TOAFactor.h
TSAMFactors.h
TransformBtwRobotsUnaryFactor.h
TransformBtwRobotsUnaryFactorEM.h
serialization.cpp
serialization.h

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.