Rot2.cpp
Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2 
3  * GTSAM Copyright 2010, Georgia Tech Research Corporation,
4  * Atlanta, Georgia 30332-0415
5  * All Rights Reserved
6  * Authors: Frank Dellaert, et al. (see THANKS for the full author list)
7 
8  * See LICENSE for the license information
9 
10  * -------------------------------------------------------------------------- */
11 
19 #include <gtsam/geometry/Rot2.h>
20 #include <iostream>
21 
22 using namespace std;
23 
24 namespace gtsam {
25 
26 /* ************************************************************************* */
27 Rot2 Rot2::fromCosSin(double c, double s) {
28  Rot2 R(c, s);
29  return R.normalize();
30 }
31 
32 /* ************************************************************************* */
33 Rot2 Rot2::atan2(double y, double x) {
34  Rot2 R(x, y);
35  return R.normalize();
36 }
37 
38 /* ************************************************************************* */
39 Rot2 Rot2::Random(std::mt19937& rng) {
40  uniform_real_distribution<double> randomAngle(-M_PI, M_PI);
41  double angle = randomAngle(rng);
42  return fromAngle(angle);
43 }
44 
45 /* ************************************************************************* */
46 void Rot2::print(const string& s) const {
47  cout << s << ": " << theta() << endl;
48 }
49 
50 /* ************************************************************************* */
51 bool Rot2::equals(const Rot2& R, double tol) const {
52  return std::abs(c_ - R.c_) <= tol && std::abs(s_ - R.s_) <= tol;
53 }
54 
55 /* ************************************************************************* */
57  double scale = c_*c_ + s_*s_;
58  if(std::abs(scale-1.0) > 1e-10) {
59  scale = 1 / sqrt(scale);
60  c_ *= scale;
61  s_ *= scale;
62  }
63  return *this;
64 }
65 
66 /* ************************************************************************* */
68  if (H)
69  *H = I_1x1;
70  if (v.isZero())
71  return (Rot2());
72  else
73  return Rot2::fromAngle(v(0));
74 }
75 
76 /* ************************************************************************* */
77 Vector1 Rot2::Logmap(const Rot2& r, OptionalJacobian<1, 1> H) {
78  if (H)
79  *H = I_1x1;
80  Vector1 v;
81  v << r.theta();
82  return v;
83 }
84 /* ************************************************************************* */
85 Matrix2 Rot2::matrix() const {
86  Matrix2 rvalue_;
87  rvalue_ << c_, -s_, s_, c_;
88  return rvalue_;
89 }
90 
91 /* ************************************************************************* */
92 Matrix2 Rot2::transpose() const {
93  Matrix2 rvalue_;
94  rvalue_ << c_, s_, -s_, c_;
95  return rvalue_;
96 }
97 
98 /* ************************************************************************* */
99 // see doc/math.lyx, SO(2) section
101  OptionalJacobian<2, 2> H2) const {
102  const Point2 q = Point2(c_ * p.x() + -s_ * p.y(), s_ * p.x() + c_ * p.y());
103  if (H1) *H1 << -q.y(), q.x();
104  if (H2) *H2 = matrix();
105  return q;
106 }
107 
108 /* ************************************************************************* */
109 // see doc/math.lyx, SO(2) section
112  const Point2 q = Point2(c_ * p.x() + s_ * p.y(), -s_ * p.x() + c_ * p.y());
113  if (H1) *H1 << q.y(), -q.x();
114  if (H2) *H2 = transpose();
115  return q;
116 }
117 
118 /* ************************************************************************* */
119 Rot2 Rot2::relativeBearing(const Point2& d, OptionalJacobian<1, 2> H) {
120  double x = d.x(), y = d.y(), d2 = x * x + y * y, n = sqrt(d2);
121  if(std::abs(n) > 1e-5) {
122  if (H) {
123  *H << -y / d2, x / d2;
124  }
125  return Rot2::fromCosSin(x / n, y / n);
126  } else {
127  if (H) *H << 0.0, 0.0;
128  return Rot2();
129  }
130 }
131 
132 /* ************************************************************************* */
133 Rot2 Rot2::ClosestTo(const Matrix2& M) {
135  const Matrix2& U = svd.matrixU();
136  const Matrix2& V = svd.matrixV();
137  const double det = (U * V.transpose()).determinant();
138  Matrix2 M_prime = (U * Vector2(1, det).asDiagonal() * V.transpose());
139 
140  double c = M_prime(0, 0);
141  double s = M_prime(1, 0);
142  return Rot2::fromCosSin(c, s);
143 }
144 
145 /* ************************************************************************* */
146 
147 } // gtsam
cout<< "Here is the matrix m:"<< endl<< m<< endl;JacobiSVD< MatrixXf > svd(m, ComputeThinU|ComputeThinV)
Matrix< RealScalar, Dynamic, Dynamic > M
Definition: bench_gemm.cpp:51
Scalar * y
double s_
Definition: Rot2.h:38
void determinant(const MatrixType &m)
Definition: determinant.cpp:14
Vector2 Point2
Definition: Point2.h:32
static std::mt19937 rng
int n
Scalar Scalar * c
Definition: benchVecAdd.cpp:17
#define M_PI
Definition: main.h:106
Rot2 R(Rot2::fromAngle(0.1))
Pose2_ Expmap(const Vector3_ &xi)
Definition: BFloat16.h:88
EIGEN_STRONG_INLINE Packet4f print(const Packet4f &a)
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy y set format x g set format y g set format x2 g set format y2 g set format z g set angles radians set nogrid set key title set key left top Right noreverse box linetype linewidth samplen spacing width set nolabel set noarrow set nologscale set logscale x set set pointsize set encoding default set nopolar set noparametric set set set set surface set nocontour set clabel set mapping cartesian set nohidden3d set cntrparam order set cntrparam linear set cntrparam levels auto set cntrparam points set size set set xzeroaxis lt lw set x2zeroaxis lt lw set yzeroaxis lt lw set y2zeroaxis lt lw set tics in set ticslevel set tics set mxtics default set mytics default set mx2tics default set my2tics default set xtics border mirror norotate autofreq set ytics border mirror norotate autofreq set ztics border nomirror norotate autofreq set nox2tics set noy2tics set timestamp bottom norotate set rrange [*:*] noreverse nowriteback set trange [*:*] noreverse nowriteback set urange [*:*] noreverse nowriteback set vrange [*:*] noreverse nowriteback set xlabel matrix size set x2label set timefmt d m y n H
static void normalize(Signature::Row &row)
Definition: Signature.cpp:88
P unrotate(const T &r, const P &pt)
Definition: lieProxies.h:50
P rotate(const T &r, const P &pt)
Definition: lieProxies.h:47
Array< int, Dynamic, 1 > v
Array< double, 1, 3 > e(1./3., 0.5, 2.)
RealScalar s
EIGEN_DEVICE_FUNC const Scalar & q
Rot2 & normalize()
Definition: Rot2.cpp:56
AnnoyingScalar atan2(const AnnoyingScalar &y, const AnnoyingScalar &x)
traits
Definition: chartTesting.h:28
Eigen::Vector2d Vector2
Definition: Vector.h:42
Two-sided Jacobi SVD decomposition of a rectangular matrix.
float * p
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy y set format x g set format y g set format x2 g set format y2 g set format z g set angles radians set nogrid set key title set key left top Right noreverse box linetype linewidth samplen spacing width set nolabel set noarrow set nologscale set logscale x set set pointsize set encoding default set nopolar set noparametric set set set set surface set nocontour set clabel set mapping cartesian set nohidden3d set cntrparam order set cntrparam linear set cntrparam levels auto set cntrparam points set size set set xzeroaxis lt lw set x2zeroaxis lt lw set yzeroaxis lt lw set y2zeroaxis lt lw set tics in set ticslevel set tics scale
Jet< T, N > sqrt(const Jet< T, N > &f)
Definition: jet.h:418
const G double tol
Definition: Group.h:86
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
The matrix class, also used for vectors and row-vectors.
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
#define abs(x)
Definition: datatypes.h:17
double c_
Definition: Rot2.h:38
2D rotation
double theta() const
Definition: Rot2.h:186


gtsam
Author(s):
autogenerated on Tue Jul 4 2023 02:35:34