minor fixes to Pose2 and Rot2
parent
7ebbe1869e
commit
784bdc64c5
|
|
@ -324,8 +324,8 @@ GTSAM_EXPORT boost::optional<Pose2> align(const std::vector<Point2Pair>& pairs);
|
|||
|
||||
// Convenience typedef
|
||||
using Pose2Pair = std::pair<Pose2, Pose2>;
|
||||
using Pose2Pairs = std::vector<std::pair<Pose2, Pose2> >;
|
||||
|
||||
using Pose2Pairs = std::vector<Pose2Pair>;
|
||||
|
||||
template <>
|
||||
struct traits<Pose2> : public internal::LieGroup<Pose2> {};
|
||||
|
||||
|
|
|
|||
|
|
@ -130,15 +130,15 @@ Rot2 Rot2::relativeBearing(const Point2& d, OptionalJacobian<1, 2> H) {
|
|||
}
|
||||
|
||||
/* ************************************************************************* */
|
||||
static Rot2 ClosestTo(const Matrix2& M) {
|
||||
double c = M(0,0);
|
||||
double s = M(1,0);
|
||||
double theta_rad = atan2(s, c);
|
||||
c = cos(theta_rad);
|
||||
s = sin(theta_rad);
|
||||
return Rot2::fromCosSin(c, s);
|
||||
Rot2 Rot2::ClosestTo(const Matrix2& M) {
|
||||
double c = M(0, 0);
|
||||
double s = M(1, 0);
|
||||
double theta_rad = std::atan2(s, c);
|
||||
c = cos(theta_rad);
|
||||
s = sin(theta_rad);
|
||||
return Rot2::fromCosSin(c, s);
|
||||
}
|
||||
|
||||
|
||||
/* ************************************************************************* */
|
||||
|
||||
} // gtsam
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ namespace gtsam {
|
|||
|
||||
/** return 2*2 transpose (inverse) rotation matrix */
|
||||
Matrix2 transpose() const;
|
||||
|
||||
|
||||
/** Find closest valid rotation matrix, given a 2x2 matrix */
|
||||
static Rot2 ClosestTo(const Matrix2& M);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue