2010-02-23 13:06:16 +08:00
|
|
|
/*
|
|
|
|
* Simulated2DPosePrior.h
|
|
|
|
*
|
|
|
|
* Re-created on Feb 22, 2010 for compatibility with MATLAB
|
|
|
|
* Author: Frank Dellaert
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2010-08-20 01:23:19 +08:00
|
|
|
#include <gtsam/slam/simulated2D.h>
|
2010-10-09 11:09:58 +08:00
|
|
|
#include <gtsam/slam/Simulated2DValues.h>
|
2010-02-23 13:06:16 +08:00
|
|
|
|
|
|
|
namespace gtsam {
|
|
|
|
|
|
|
|
/** Create a prior on a pose Point2 with key 'x1' etc... */
|
2010-10-09 11:09:58 +08:00
|
|
|
typedef simulated2D::GenericPrior<Simulated2DValues, simulated2D::PoseKey> Simulated2DPosePrior;
|
2010-02-23 13:06:16 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|