Visual Servoing Platform  version 3.6.1 under development (2024-04-24)
vpRotationVector.cpp
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2023 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See https://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * Generic rotation vector (cannot be used as is !).
33  *
34 *****************************************************************************/
35 
36 #include <algorithm>
37 #include <math.h>
38 
39 #include <visp3/core/vpColVector.h>
40 #include <visp3/core/vpRotationVector.h>
41 #include <visp3/core/vpRowVector.h>
42 
54 {
55  vpRowVector v(dsize);
56 
57  for (unsigned int i = 0; i < dsize; ++i) {
58  v[i] = data[i];
59  }
60 
61  return v;
62 }
63 
68 std::vector<double> vpRotationVector::toStdVector() const
69 {
70  std::vector<double> v(this->size());
71 
72  unsigned int this_size = this->size();
73  for (unsigned int i = 0; i < this_size; ++i) {
74  v[i] = data[i];
75  }
76  return v;
77 }
78 
90 {
91  vpColVector v(dsize);
92 
93  for (unsigned int i = 0; i < dsize; ++i) {
94  v[i] = (*this)[i] * x;
95  }
96  return v;
97 }
98 
103 vpColVector operator*(const double &x, const vpRotationVector &v)
104 {
105  vpColVector vout;
106  vout = v * x;
107  return vout;
108 }
109 
134 {
135  m_index = 0;
136  data[m_index] = val;
137  return *this;
138 }
139 
164 {
165  m_index++;
166  if (m_index >= size()) {
168  "Cannot set rotation vector out of bounds. It has only %d elements while you try to initialize "
169  "with %d elements",
170  size(), m_index + 1));
171  }
172  data[m_index] = val;
173  return *this;
174 }
175 
183 {
184  double sum_square = 0.0;
185 
186  for (unsigned int i = 0; i < rowNum; ++i) {
187  double x = rowPtrs[i][0];
188  sum_square += x * x;
189  }
190 
191  return sum_square;
192 }
double * data
Address of the first element of the data array.
Definition: vpArray2D.h:139
double ** rowPtrs
Address of the first element of each rows.
Definition: vpArray2D.h:133
unsigned int rowNum
Number of rows in the array.
Definition: vpArray2D.h:129
unsigned int dsize
Current array size (rowNum * colNum)
Definition: vpArray2D.h:135
unsigned int size() const
Return the number of elements of the 2D array.
Definition: vpArray2D.h:339
Implementation of column vector and the associated operations.
Definition: vpColVector.h:163
error that can be emitted by ViSP classes.
Definition: vpException.h:59
@ dimensionError
Bad dimension.
Definition: vpException.h:83
Implementation of a generic rotation vector.
unsigned int m_index
double sumSquare() const
vpRotationVector & operator<<(double val)
std::vector< double > toStdVector() const
vpColVector operator*(double x) const
vpColVector operator*(const double &x, const vpRotationVector &v)
vpRotationVector & operator,(double val)
vpRowVector t() const
Implementation of row vector and the associated operations.
Definition: vpRowVector.h:107