180 lines
5.3 KiB
C++
180 lines
5.3 KiB
C++
/* ----------------------------------------------------------------------------
|
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
|
* Atlanta, Georgia 30332-0415
|
|
* All Rights Reserved
|
|
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
|
|
|
|
* See LICENSE for the license information
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* @file Cal3Bundler.h
|
|
* @brief Calibration used by Bundler
|
|
* @date Sep 25, 2010
|
|
* @author Yong Dian Jian
|
|
* @author Varun Agrawal
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <gtsam/geometry/Cal3.h>
|
|
#include <gtsam/geometry/Point2.h>
|
|
|
|
namespace gtsam {
|
|
|
|
/**
|
|
* @brief Calibration used by Bundler
|
|
* @ingroup geometry
|
|
* \nosubgrouping
|
|
*/
|
|
class GTSAM_EXPORT Cal3Bundler : public Cal3 {
|
|
private:
|
|
double k1_ = 0.0f, k2_ = 0.0f; ///< radial distortion
|
|
double tol_ = 1e-5; ///< tolerance value when calibrating
|
|
|
|
// NOTE: We use the base class fx to represent the common focal length.
|
|
// Also, image center parameters (u0, v0) are not optimized
|
|
// but are treated as constants.
|
|
|
|
public:
|
|
enum { dimension = 3 };
|
|
|
|
///< shared pointer to stereo calibration object
|
|
using shared_ptr = std::shared_ptr<Cal3Bundler>;
|
|
|
|
/// @name Standard Constructors
|
|
/// @{
|
|
|
|
/// Default constructor
|
|
Cal3Bundler() = default;
|
|
|
|
/**
|
|
* Constructor
|
|
* @param f focal length
|
|
* @param k1 first radial distortion coefficient (quadratic)
|
|
* @param k2 second radial distortion coefficient (quartic)
|
|
* @param u0 optional image center (default 0), considered a constant
|
|
* @param v0 optional image center (default 0), considered a constant
|
|
* @param tol optional calibration tolerance value
|
|
*/
|
|
Cal3Bundler(double f, double k1, double k2, double u0 = 0, double v0 = 0,
|
|
double tol = 1e-5)
|
|
: Cal3(f, f, 0, u0, v0), k1_(k1), k2_(k2), tol_(tol) {}
|
|
|
|
~Cal3Bundler() override {}
|
|
|
|
/// @}
|
|
/// @name Testable
|
|
/// @{
|
|
|
|
/// Output stream operator
|
|
GTSAM_EXPORT friend std::ostream& operator<<(std::ostream& os,
|
|
const Cal3Bundler& cal);
|
|
|
|
/// print with optional string
|
|
void print(const std::string& s = "") const override;
|
|
|
|
/// assert equality up to a tolerance
|
|
bool equals(const Cal3Bundler& K, double tol = 10e-9) const;
|
|
|
|
/// @}
|
|
/// @name Standard Interface
|
|
/// @{
|
|
|
|
/// distorsion parameter k1
|
|
inline double k1() const { return k1_; }
|
|
|
|
/// distorsion parameter k2
|
|
inline double k2() const { return k2_; }
|
|
|
|
/// image center in x
|
|
inline double px() const { return u0_; }
|
|
|
|
/// image center in y
|
|
inline double py() const { return v0_; }
|
|
|
|
Matrix3 K() const override; ///< Standard 3*3 calibration matrix
|
|
Vector4 k() const; ///< Radial distortion parameters (4 of them, 2 0)
|
|
|
|
Vector3 vector() const;
|
|
|
|
/**
|
|
* @brief: convert intrinsic coordinates xy to image coordinates uv
|
|
* Version of uncalibrate with derivatives
|
|
* @param p point in intrinsic coordinates
|
|
* @param Dcal optional 2*3 Jacobian wrpt Cal3Bundler parameters
|
|
* @param Dp optional 2*2 Jacobian wrpt intrinsic coordinates
|
|
* @return point in image coordinates
|
|
*/
|
|
Point2 uncalibrate(const Point2& p, OptionalJacobian<2, 3> Dcal = {},
|
|
OptionalJacobian<2, 2> Dp = {}) const;
|
|
|
|
/**
|
|
* Convert a pixel coordinate to ideal coordinate xy
|
|
* @param p point in image coordinates
|
|
* @param tol optional tolerance threshold value for iterative minimization
|
|
* @param Dcal optional 2*3 Jacobian wrpt Cal3Bundler parameters
|
|
* @param Dp optional 2*2 Jacobian wrpt intrinsic coordinates
|
|
* @return point in intrinsic coordinates
|
|
*/
|
|
Point2 calibrate(const Point2& pi, OptionalJacobian<2, 3> Dcal = {},
|
|
OptionalJacobian<2, 2> Dp = {}) const;
|
|
|
|
/// @deprecated might be removed in next release, use uncalibrate
|
|
Matrix2 D2d_intrinsic(const Point2& p) const;
|
|
|
|
/// @deprecated might be removed in next release, use uncalibrate
|
|
Matrix23 D2d_calibration(const Point2& p) const;
|
|
|
|
/// @deprecated might be removed in next release, use uncalibrate
|
|
Matrix25 D2d_intrinsic_calibration(const Point2& p) const;
|
|
|
|
/// @}
|
|
/// @name Manifold
|
|
/// @{
|
|
|
|
/// return DOF, dimensionality of tangent space
|
|
size_t dim() const override { return Dim(); }
|
|
|
|
/// return DOF, dimensionality of tangent space
|
|
inline static size_t Dim() { return dimension; }
|
|
|
|
/// Update calibration with tangent space delta
|
|
inline Cal3Bundler retract(const Vector& d) const {
|
|
return Cal3Bundler(fx_ + d(0), k1_ + d(1), k2_ + d(2), u0_, v0_);
|
|
}
|
|
|
|
/// Calculate local coordinates to another calibration
|
|
Vector3 localCoordinates(const Cal3Bundler& T2) const {
|
|
return T2.vector() - vector();
|
|
}
|
|
|
|
private:
|
|
/// @}
|
|
/// @name Advanced Interface
|
|
/// @{
|
|
|
|
/** Serialization function */
|
|
friend class boost::serialization::access;
|
|
template <class Archive>
|
|
void serialize(Archive& ar, const unsigned int /*version*/) {
|
|
ar& boost::serialization::make_nvp(
|
|
"Cal3Bundler", boost::serialization::base_object<Cal3>(*this));
|
|
ar& BOOST_SERIALIZATION_NVP(k1_);
|
|
ar& BOOST_SERIALIZATION_NVP(k2_);
|
|
ar& BOOST_SERIALIZATION_NVP(tol_);
|
|
}
|
|
|
|
/// @}
|
|
};
|
|
|
|
template <>
|
|
struct traits<Cal3Bundler> : public internal::Manifold<Cal3Bundler> {};
|
|
|
|
template <>
|
|
struct traits<const Cal3Bundler> : public internal::Manifold<Cal3Bundler> {};
|
|
|
|
} // namespace gtsam
|