2009-12-18 05:23:50 +08:00
|
|
|
/**
|
2010-01-08 23:32:45 +08:00
|
|
|
* @file Pose3Factor.H
|
|
|
|
* @authors Frank Dellaert, Viorela Ila
|
|
|
|
**/
|
2009-12-18 05:23:50 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2010-01-11 02:21:20 +08:00
|
|
|
#include "Pose3Config.h"
|
2010-01-10 22:59:39 +08:00
|
|
|
#include "BetweenFactor.h"
|
2009-12-18 05:23:50 +08:00
|
|
|
|
|
|
|
namespace gtsam {
|
|
|
|
|
2010-01-10 21:55:55 +08:00
|
|
|
/**
|
|
|
|
* A Factor for 3D pose measurements
|
|
|
|
* This is just a typedef now
|
|
|
|
*/
|
2010-01-08 23:32:45 +08:00
|
|
|
typedef BetweenFactor<Pose3, Pose3Config> Pose3Factor;
|
2009-12-18 05:23:50 +08:00
|
|
|
|
2010-01-08 23:32:45 +08:00
|
|
|
} /// namespace gtsam
|