Point3.h
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 
20 // \callgraph
21 
22 #pragma once
23 
24 #include <gtsam/config.h>
25 #include <gtsam/base/VectorSpace.h>
26 #include <gtsam/base/Vector.h>
27 #include <gtsam/dllexport.h>
28 #include <boost/serialization/nvp.hpp>
29 #include <numeric>
30 
31 namespace gtsam {
32 
35 typedef Vector3 Point3;
36 
37 // Convenience typedef
38 using Point3Pair = std::pair<Point3, Point3>;
39 GTSAM_EXPORT std::ostream &operator<<(std::ostream &os, const gtsam::Point3Pair &p);
40 
41 using Point3Pairs = std::vector<Point3Pair>;
42 
44 GTSAM_EXPORT double distance3(const Point3& p1, const Point3& q,
45  OptionalJacobian<1, 3> H1 = boost::none,
46  OptionalJacobian<1, 3> H2 = boost::none);
47 
49 GTSAM_EXPORT double norm3(const Point3& p, OptionalJacobian<1, 3> H = boost::none);
50 
52 GTSAM_EXPORT Point3 normalize(const Point3& p, OptionalJacobian<3, 3> H = boost::none);
53 
55 GTSAM_EXPORT Point3 cross(const Point3& p, const Point3& q,
56  OptionalJacobian<3, 3> H_p = boost::none,
57  OptionalJacobian<3, 3> H_q = boost::none);
58 
60 GTSAM_EXPORT double dot(const Point3& p, const Point3& q,
61  OptionalJacobian<1, 3> H_p = boost::none,
62  OptionalJacobian<1, 3> H_q = boost::none);
63 
65 template <class CONTAINER>
66 Point3 mean(const CONTAINER& points) {
67  if (points.size() == 0) throw std::invalid_argument("Point3::mean input container is empty");
68  Point3 sum(0, 0, 0);
69  sum = std::accumulate(points.begin(), points.end(), sum);
70  return sum / points.size();
71 }
72 
74 GTSAM_EXPORT Point3Pair means(const std::vector<Point3Pair> &abPointPairs);
75 
76 template <typename A1, typename A2>
77 struct Range;
78 
79 template <>
80 struct Range<Point3, Point3> {
81  typedef double result_type;
82  double operator()(const Point3& p, const Point3& q,
83  OptionalJacobian<1, 3> H1 = boost::none,
84  OptionalJacobian<1, 3> H2 = boost::none) {
85  return distance3(p, q, H1, H2);
86  }
87 };
88 
89 } // namespace gtsam
90 
std::ostream & operator<<(std::ostream &os, const Dih6 &m)
Definition: testGroup.cpp:109
Eigen::Vector3d Vector3
Definition: Vector.h:43
double dot(const V1 &a, const V2 &b)
Definition: Vector.h:194
Vector3f p1
std::vector< Point3Pair > Point3Pairs
Definition: Point3.h:41
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
Point3 mean(const CONTAINER &points)
mean
Definition: Point3.h:66
double distance3(const Point3 &p1, const Point3 &q, OptionalJacobian< 1, 3 > H1, OptionalJacobian< 1, 3 > H2)
distance between two points
Definition: Point3.cpp:26
static void normalize(Signature::Row &row)
Definition: Signature.cpp:158
Point3 cross(const Point3 &p, const Point3 &q, OptionalJacobian< 3, 3 > H1, OptionalJacobian< 3, 3 > H2)
cross product
Definition: Point3.cpp:63
const mpreal sum(const mpreal tab[], const unsigned long int n, int &status, mp_rnd_t mode=mpreal::get_default_rnd())
Definition: mpreal.h:2381
EIGEN_DEVICE_FUNC const Scalar & q
double norm3(const Point3 &p, OptionalJacobian< 1, 3 > H)
Distance of the point from the origin, with Jacobian.
Definition: Point3.cpp:40
traits
Definition: chartTesting.h:28
typedef and functions to augment Eigen&#39;s VectorXd
ofstream os("timeSchurFactors.csv")
Point3Pair means(const std::vector< Point3Pair > &abPointPairs)
Calculate the two means of a set of Point3 pairs.
Definition: Point3.cpp:78
float * p
Vector3 Point3
Definition: Point3.h:35
double operator()(const Point3 &p, const Point3 &q, OptionalJacobian< 1, 3 > H1=boost::none, OptionalJacobian< 1, 3 > H2=boost::none)
Definition: Point3.h:82
std::pair< Point3, Point3 > Point3Pair
Definition: Point3.h:38


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:43:27