Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
vpMomentCInvariant.h
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2023 by Inria. All rights reserved.
4  *
5  * This software is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See https://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * Descriptor for various invariants used to drive space rotations around X and
32  * Y axis.
33  */
39 #ifndef _vpMomentCInvariant_h_
40 #define _vpMomentCInvariant_h_
41 
42 #include <visp3/core/vpConfig.h>
43 #include <visp3/core/vpMoment.h>
44 #include <visp3/core/vpMomentDatabase.h>
45 
47 class vpMomentCentered;
48 class vpMomentBasic;
49 
127 class VISP_EXPORT vpMomentCInvariant : public vpMoment
128 {
129 private:
130  std::vector<double> I;
131  std::vector<double> II;
132  std::vector<double> c;
133  std::vector<double> s;
134  double K;
135  void computeI(const vpMomentCentered &momentCentered, std::vector<double> &I);
136 
137  /* To calculate Sx and Sy from normalized moments */
138  void calcSxSy(double &sx, double &sy) const;
139  void calcSxSyNormalized(double &sx, double &sy) const;
140  std::vector<double> cn; // same as s above but calculated from normalized moments
141  std::vector<double> sn; // same as c above but calculated from normalized moments
142  double In1; // same as I1 in Sx,Sy formulae but calculated from normalized
143  // moments
144  bool flg_sxsynormalization_;
145 
146 public:
147  VP_EXPLICIT vpMomentCInvariant(bool flg_sxsynormalization = false);
148 
152  double C1() const { return values[0]; }
156  double C2() const { return values[1]; }
160  double C3() const { return values[2]; }
164  double C4() const { return values[3]; }
168  double C5() const { return values[4]; }
172  double C6() const { return values[5]; }
176  double C7() const { return values[6]; }
180  double C8() const { return values[7]; }
184  double C9() const { return values[8]; }
188  double C10() const { return values[9]; }
189 
190  void compute();
191 
198  double get(unsigned int i) const { return values[i]; }
199 
203  double getC(unsigned int i) const { return c[i]; }
207  double getI(unsigned int index) const { return I[index]; }
208 
212  void printInvariants(std::ostream &os) const;
213 
217  double getII(unsigned int i) const { return II[i]; }
221  double getK() const { return K; }
222 
226  double getS(unsigned int i) const { return s[i]; }
227 
231  const std::string name() const { return "vpMomentCInvariant"; }
232 
236  void printI(unsigned int index);
237 
241  double Px() { return values[12]; }
245  double Py() { return values[13]; }
246 
250  double Sx() const { return values[10]; }
254  double Sy() const { return values[11]; }
255 
260  double getIn1() const { return In1; }
261 
266  double getCN(unsigned int i) const { return cn[i]; }
267 
272  double getSN(unsigned int i) const { return sn[i]; }
273 
277  bool isSxSyfromNormalizedMoments() const { return flg_sxsynormalization_; };
278 
282  inline const std::vector<double> &getMomentVector() const { return values; }
283 
284  friend VISP_EXPORT std::ostream &operator<<(std::ostream &os, const vpMomentCInvariant &v);
285 };
286 END_VISP_NAMESPACE
287 #endif
This class defines the 2D basic moment . This class is a wrapper for vpMomentObject which allows to u...
Definition: vpMomentBasic.h:73
const std::vector< double > & getMomentVector() const
const std::string name() const
double get(unsigned int i) const
double getI(unsigned int index) const
double getS(unsigned int i) const
bool isSxSyfromNormalizedMoments() const
double getCN(unsigned int i) const
double getC(unsigned int i) const
double getSN(unsigned int i) const
double getII(unsigned int i) const
This class defines the double-indexed centered moment descriptor .
This class defines shared methods/attributes for 2D moments.
Definition: vpMoment.h:106
std::vector< double > values
Definition: vpMoment.h:113
friend VISP_EXPORT std::ostream & operator<<(std::ostream &os, const vpMoment &m)
Definition: vpMoment.cpp:50
virtual void compute()=0