Visual Servoing Platform  version 3.0.0
vpFeatureTranslation.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  * 3D translation visual feature.
32  *
33  * Authors:
34  * Eric Marchand
35  * Fabien Spindler
36  *
37  *****************************************************************************/
38 
39 
40 #ifndef vpFeatureTranslation_H
41 #define vpFeatureTranslation_H
42 
48 #include <visp3/core/vpMatrix.h>
49 #include <visp3/visual_features/vpBasicFeature.h>
50 #include <visp3/core/vpTranslationVector.h>
51 #include <visp3/core/vpHomogeneousMatrix.h>
52 #include <visp3/core/vpRGBa.h>
53 
54 
274 class VISP_EXPORT vpFeatureTranslation : public vpBasicFeature
275 {
276 public:
277 
282  typedef enum {
294  cMo
295  } vpFeatureTranslationRepresentationType;
296 
297  // basic construction
298  void init() ;
299  // basic contructor
301  // basic constructor specifying the type of translation feature
302  vpFeatureTranslation(vpFeatureTranslationRepresentationType r) ;
303  // constructor : build from an homogeneous matrix
304  // cdMc is the displacement that the camera has to realize
305  vpFeatureTranslation(vpHomogeneousMatrix &f2Mf1, vpFeatureTranslationRepresentationType r) ;
308 
309  // build from an homogeneous matrix
310  // cdMc is the displacement that the camera has to realize
311  void buildFrom(const vpHomogeneousMatrix &f2Mf1) ;
312 
313  void set_Tx(const double t_x) ;
314  void set_Ty(const double t_y) ;
315  void set_Tz(const double t_z) ;
316 
317  void setFeatureTranslationType(const vpFeatureTranslationRepresentationType r);
318 
319  vpFeatureTranslationRepresentationType getFeatureTranslationType() const;
320 
321  double get_Tx() const ;
322  double get_Ty() const ;
323  double get_Tz() const ;
324 
325  // feature selection
326  static unsigned int selectTx();
327  static unsigned int selectTy();
328  static unsigned int selectTz();
329 
330  // compute the interaction matrix from a subset a the possible features
331  vpMatrix interaction(const unsigned int select = FEATURE_ALL);
332  // compute the error between two visual features from a subset
333  // a the possible features
334  vpColVector error(const vpBasicFeature &s_star,
335  const unsigned int select = FEATURE_ALL) ;
336  // print the name of the feature
337  void print(const unsigned int select= FEATURE_ALL) const ;
338 
341 
342  void display(const vpCameraParameters &cam,
343  const vpImage<unsigned char> &I,
344  const vpColor &color=vpColor::green,
345  unsigned int thickness=1) const ;
346  void display(const vpCameraParameters &cam,
347  const vpImage<vpRGBa> &I,
348  const vpColor &color=vpColor::green,
349  unsigned int thickness=1) const ;
350 
351 private:
353  vpHomogeneousMatrix f2Mf1;
354  vpFeatureTranslationRepresentationType translation;
355 } ;
356 
357 
358 #endif
359 
360 /*
361  * Local variables:
362  * c-basic-offset: 2
363  * End:
364  */
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:92
Class that defines the translation visual feature .
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
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
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
virtual ~vpFeatureTranslation()
Destructor. Does nothing.