ViSP  2.10.0
vpFeatureDepth.h
1 /****************************************************************************
2  *
3  * $Id: vpFeatureDepth.h 5237 2015-01-30 13:52:04Z fspindle $
4  *
5  * This file is part of the ViSP software.
6  * Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
7  *
8  * This software is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * ("GPL") version 2 as published by the Free Software Foundation.
11  * See the file LICENSE.txt at the root directory of this source
12  * distribution for additional information about the GNU GPL.
13  *
14  * For using ViSP with software that can not be combined with the GNU
15  * GPL, please contact INRIA about acquiring a ViSP Professional
16  * Edition License.
17  *
18  * See http://www.irisa.fr/lagadic/visp/visp.html for more information.
19  *
20  * This software was developed at:
21  * INRIA Rennes - Bretagne Atlantique
22  * Campus Universitaire de Beaulieu
23  * 35042 Rennes Cedex
24  * France
25  * http://www.irisa.fr/lagadic
26  *
27  * If you have questions regarding the use of this file, please contact
28  * INRIA at visp@inria.fr
29  *
30  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
31  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
32  *
33  *
34  * Description:
35  * 2D point visual feature.
36  *
37  * Authors:
38  * Nicolas Melchior
39  *
40  *****************************************************************************/
41 
42 
43 #ifndef vpFeatureDepth_H
44 #define vpFeatureDepth_H
45 
51 #include <visp/vpMatrix.h>
52 #include <visp/vpBasicFeature.h>
53 
54 #include <visp/vpHomogeneousMatrix.h>
55 #include <visp/vpRGBa.h>
56 
57 
166 class VISP_EXPORT vpFeatureDepth : public vpBasicFeature
167 {
168 
169 private:
171  double x;
173  double y;
175  double Z;
176 
177 public:
178  void init() ;
179  vpFeatureDepth() ;
181  virtual ~vpFeatureDepth() {}
182 
183  /*
184  section Set coordinates
185  */
186 
187  void buildFrom(const double x, const double y, const double Z, const double LogZoverZstar) ;
188 
189  void set_x(const double x) ;
190 
191  void set_y(const double y) ;
192 
193  void set_Z(const double Z) ;
194 
195  void set_LogZoverZstar(const double LogZoverZstar);
196 
197  void set_xyZLogZoverZstar(const double x, const double y, const double Z, const double logZZs) ;
198 
199  double get_x() const ;
200 
201  double get_y() const ;
202 
203  double get_Z() const ;
204 
205  double get_LogZoverZstar() const ;
206 
207 
208  /*
209  vpBasicFeature method instantiation
210  */
211 
212 
213  vpMatrix interaction(const unsigned int select = FEATURE_ALL);
214 
215  vpColVector error(const vpBasicFeature &s_star,
216  const unsigned int select = FEATURE_ALL) ;
217 
218  void print(const unsigned int select = FEATURE_ALL ) const ;
219 
220  vpFeatureDepth *duplicate() const ;
221 
222 
223  void display(const vpCameraParameters &cam,
224  const vpImage<unsigned char> &I,
225  const vpColor &color=vpColor::green,
226  unsigned int thickness=1) const ;
227  void display(const vpCameraParameters &cam,
228  const vpImage<vpRGBa> &I,
229  const vpColor &color=vpColor::green,
230  unsigned int thickness=1) const ;
231 
232 } ;
233 
234 
235 
236 #endif
237 
238 /*
239  * Local variables:
240  * c-basic-offset: 2
241  * End:
242  */
Definition of the vpMatrix class.
Definition: vpMatrix.h:98
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:125
Class that defines a 3D point visual feature which is composed by one parameters that is that defin...
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:170
virtual ~vpFeatureDepth()
Destructor.
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
Class that provides a data structure for the column vectors as well as a set of operations on these v...
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