ViSP  2.6.2
vpFeatureDisplay.h
1 /****************************************************************************
2  *
3  * $Id: vpFeatureDisplay.h 3653 2012-03-28 12:43:23Z fspindle $
4  *
5  * This file is part of the ViSP software.
6  * Copyright (C) 2005 - 2012 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  * Interface with the image for feature display.
36  *
37  * Authors:
38  * Eric Marchand
39  * Fabien Spindler
40  *
41  *****************************************************************************/
42 
43 
44 #ifndef vpFeatureDisplay_H
45 #define vpFeatureDisplay_H
46 
52 //Color / image / display
53 #include <visp/vpImage.h>
54 #include <visp/vpColor.h>
55 #include <visp/vpRGBa.h>
56 
57 // Meter/pixel conversion
58 #include <visp/vpCameraParameters.h>
59 
66 class VISP_EXPORT vpFeatureDisplay
67 {
68 
69 public:
70  static void displayPoint(double x,double y,
71  const vpCameraParameters &cam,
72  const vpImage<unsigned char> &I,
73  const vpColor &color = vpColor::green,
74  unsigned int thickness=1) ;
75  static void displayLine(double rho,double theta,
76  const vpCameraParameters &cam,
77  const vpImage<unsigned char> &I,
78  const vpColor &color = vpColor::green,
79  unsigned int thickness=1) ;
80  static void displayCylinder(double rho1,double theta1,
81  double rho2,double theta2,
82  const vpCameraParameters &cam,
83  const vpImage<unsigned char> &I,
84  const vpColor &color = vpColor::green,
85  unsigned int thickness=1) ;
86  static void displayEllipse(double x,double y,
87  double mu20, double mu11, double m02,
88  const vpCameraParameters &cam,
89  const vpImage<unsigned char> &I,
90  const vpColor &color = vpColor::green,
91  unsigned int thickness=1) ;
92 
93  static void displayPoint(double x,double y,
94  const vpCameraParameters &cam,
95  const vpImage<vpRGBa> &I,
96  const vpColor &color = vpColor::green,
97  unsigned int thickness=1) ;
98  static void displayLine(double rho,double theta,
99  const vpCameraParameters &cam,
100  const vpImage<vpRGBa> &I,
101  const vpColor &color = vpColor::green,
102  unsigned int thickness=1) ;
103  static void displayCylinder(double rho1,double theta1,
104  double rho2,double theta2,
105  const vpCameraParameters &cam,
106  const vpImage<vpRGBa> &I,
107  const vpColor &color = vpColor::green,
108  unsigned int thickness=1) ;
109  static void displayEllipse(double x,double y,
110  double mu20, double mu11, double m02,
111  const vpCameraParameters &cam,
112  const vpImage<vpRGBa> &I,
113  const vpColor &color = vpColor::green,
114  unsigned int thickness=1) ;
115 
116 
117 };
118 
119 #endif
120 
121 /*
122  * Local variables:
123  * c-basic-offset: 2
124  * End:
125  */
Class to define colors available for display functionnalities.
Definition: vpColor.h:123
static const vpColor green
Definition: vpColor.h:168
Generic class defining intrinsic camera parameters.
Interface with the image for feature display.