18 namespace registration {
26 PoseGraphNode(
const Eigen::Matrix4d &pose = Eigen::Matrix4d::Identity())
52 int source_node_id = -1,
53 int target_node_id = -1,
54 const Eigen::Matrix4d &transformation = Eigen::Matrix4d::Identity(),
56 bool uncertain =
false,
57 double confidence = 1.0)
Eigen::Matrix4d_u transformation_
Transformation matrix.
int target_node_id_
Target PoseGraphNode id.
PoseGraphEdge(int source_node_id=-1, int target_node_id=-1, const Eigen::Matrix4d &transformation=Eigen::Matrix4d::Identity(), const Eigen::Matrix6d &information=Eigen::Matrix6d::Identity(), bool uncertain=false, double confidence=1.0)
Parameterized Constructor.
int source_node_id_
Source PoseGraphNode id.
bool uncertain_
Whether the edge is uncertain.
bool ConvertToJsonValue(Json::Value &value) const override
bool ConvertFromJsonValue(const Json::Value &value) override
Eigen::Matrix6d_u information_
Information matrix.
double confidence_
Confidence value of the edge.
bool ConvertToJsonValue(Json::Value &value) const override
PoseGraphNode(const Eigen::Matrix4d &pose=Eigen::Matrix4d::Identity())
Default Constructor.
bool ConvertFromJsonValue(const Json::Value &value) override
Data structure defining the pose graph.
bool ConvertFromJsonValue(const Json::Value &value) override
bool ConvertToJsonValue(Json::Value &value) const override
PoseGraph()
Default Constructor.
std::vector< PoseGraphNode > nodes_
List of PoseGraphNode.
std::vector< PoseGraphEdge > edges_
List of PoseGraphEdge.
Eigen::Matrix< double, 6, 6, Eigen::DontAlign > Matrix6d_u
Eigen::Matrix< double, 4, 4, Eigen::DontAlign > Matrix4d_u
Eigen::Matrix< double, 6, 6 > Matrix6d
Extending Eigen namespace by adding frequently used matrix type.
Generic file read and write utility for python interface.