Program Listing for File RelPose3KF.h

Return to documentation for file (include/mola_kernel/entities/RelPose3KF.h)

/* -------------------------------------------------------------------------
 *   A Modular Optimization framework for Localization and mApping  (MOLA)
 * Copyright (C) 2018-2024 Jose Luis Blanco, University of Almeria
 * See LICENSE for license information.
 * ------------------------------------------------------------------------- */
#pragma once

#include <mola_kernel/entities/EntityRelativeBase.h>
#include <mola_kernel/entities/KeyFrameBase.h>
#include <mrpt/math/TPose3D.h>

namespace mola
{
class RelPose3KF : public EntityRelativeBase, public KeyFrameBase
{
    DEFINE_SERIALIZABLE(RelPose3KF, mola)

   public:
    mrpt::math::TPose3D relpose_value;
};

}  // namespace mola