Visual Servoing Platform  version 3.0.0
vpFeatureThetaU.h
1 /****************************************************************************
2  *
3  * This file is part of the ViSP software.
4  * Copyright (C) 2005 - 2015 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * ("GPL") version 2 as published by the Free Software Foundation.
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 http://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  * ThetaU visual feature.
32  *
33  * Authors:
34  * Eric Marchand
35  * Fabien Spindler
36  *
37  *****************************************************************************/
38 
39 
40 #ifndef vpFeatureThetaU_H
41 #define vpFeatureThetaU_H
42 
48 #include <visp3/core/vpMatrix.h>
49 #include <visp3/core/vpThetaUVector.h>
50 #include <visp3/visual_features/vpBasicFeature.h>
51 
52 #include <visp3/core/vpHomogeneousMatrix.h>
53 #include <visp3/core/vpRGBa.h>
54 
55 
225 class VISP_EXPORT vpFeatureThetaU : public vpBasicFeature
226 {
227 public:
228  typedef enum
229  {
230  TUx = 1,
232  TUy = 2,
234  TUz = 4
236  } vpFeatureThetaUType;
237  typedef enum
238  {
239  cdRc,
243  cRcd
247  } vpFeatureThetaURotationRepresentationType;
248  /*
249  attributes and members directly related to the vpBasicFeature needs
250  other functionalities are useful but not mandatory
251  */
252 
253 public:
254  // Basic construction.
255  void init() ;
256  // Basic constructor.
257  vpFeatureThetaU() ;
258  vpFeatureThetaU(vpFeatureThetaURotationRepresentationType r) ;
260  vpFeatureThetaURotationRepresentationType r) ;
262  vpFeatureThetaURotationRepresentationType r) ;
264  vpFeatureThetaURotationRepresentationType r) ;
265  void buildFrom(vpThetaUVector &tu) ;
266  // build from a rotation matrix
267  void buildFrom(const vpRotationMatrix &R) ;
268  // build from an homogeneous matrix
269  void buildFrom(const vpHomogeneousMatrix &M) ;
270 
272  virtual ~vpFeatureThetaU() {}
273 
274 public:
275 
276  void set_TUx(const double tu_x) ;
277  void set_TUy(const double tu_y) ;
278  void set_TUz(const double tu_z) ;
279 
280  void setFeatureThetaURotationType(const vpFeatureThetaURotationRepresentationType r);
281 
282  vpFeatureThetaURotationRepresentationType getFeatureThetaURotationType() const;
283 
284  double get_TUx() const;
285  double get_TUy() const;
286  double get_TUz() const;
287 
288 
289 public:
290  /*
291  vpBasicFeature method instantiation
292  */
293  static unsigned int selectTUx();
294  static unsigned int selectTUy();
295  static unsigned int selectTUz();
296 
297  // compute the interaction matrix from a subset a the possible features
298  vpMatrix interaction(const unsigned int select = FEATURE_ALL);
299  // compute the error between two visual features from a subset
300  // a the possible features
301  vpColVector error(const vpBasicFeature &s_star,
302  const unsigned int select = FEATURE_ALL) ;
303  void print(const unsigned int select= FEATURE_ALL) const ;
304 
306  vpFeatureThetaU *duplicate() const ;
307 
308 public:
309  void display(const vpCameraParameters &cam,
310  const vpImage<unsigned char> &I,
311  const vpColor &color=vpColor::green,
312  unsigned int thickness=1) const ;
313  void display(const vpCameraParameters &cam,
314  const vpImage<vpRGBa> &I,
315  const vpColor &color=vpColor::green,
316  unsigned int thickness=1) const ;
317 
318  private:
319  vpFeatureThetaURotationRepresentationType rotation;
320 } ;
321 
322 
323 #endif
324 
325 /*
326  * Local variables:
327  * c-basic-offset: 2
328  * End:
329  */
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:92
Implementation of an homogeneous matrix and operations on such kind of matrices.
virtual void print(const unsigned int select=FEATURE_ALL) const =0
Print the name of the feature.
Class to define colors available for display functionnalities.
Definition: vpColor.h:121
virtual vpColVector error(const vpBasicFeature &s_star, const unsigned int select=FEATURE_ALL)
Compute the error between two visual features from a subset of the possible features.
static const vpColor green
Definition: vpColor.h:166
Implementation of a rotation matrix and operations on such kind of matrices.
class that defines what is a visual feature
virtual vpMatrix interaction(const unsigned int select=FEATURE_ALL)=0
Compute the interaction matrix from a subset of the possible features.
Generic class defining intrinsic camera parameters.
virtual void init()=0
Implementation of column vector and the associated operations.
Definition: vpColVector.h:72
Class that defines a 3D visual feature from a axis/angle parametrization that represent the rotatio...
virtual vpBasicFeature * duplicate() const =0
virtual void display(const vpCameraParameters &cam, const vpImage< unsigned char > &I, const vpColor &color=vpColor::green, unsigned int thickness=1) const =0
Implementation of a rotation vector as axis-angle minimal representation.
virtual ~vpFeatureThetaU()
Destructor. Does nothing.