Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
vpCircle.h
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2024 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 * Visual feature circle.
32 */
33
38
39#ifndef VP_CIRCLE_H
40#define VP_CIRCLE_H
41
42#include <math.h>
43#include <visp3/core/vpConfig.h>
44#include <visp3/core/vpForwardProjection.h>
45#include <visp3/core/vpHomogeneousMatrix.h>
46#include <visp3/core/vpMath.h>
47
86class VISP_EXPORT vpCircle : public vpForwardProjection
87{
88public:
89 vpCircle();
90 VP_EXPLICIT vpCircle(const vpColVector &oP);
91 vpCircle(double oA, double oB, double oC, double oX, double oY, double oZ, double R);
92
93#if (VISP_CXX_STANDARD > VISP_CXX_STANDARD_98)
94 vpCircle(const vpCircle &) = default;
95 virtual ~vpCircle() VP_OVERRIDE = default;
96#else
97 virtual ~vpCircle() { }
98#endif
99 void changeFrame(const vpHomogeneousMatrix &noMo, vpColVector &noP) const VP_OVERRIDE;
100 void changeFrame(const vpHomogeneousMatrix &cMo) VP_OVERRIDE;
101
102 void display(const vpImage<unsigned char> &I, const vpCameraParameters &cam, const vpColor &color = vpColor::green,
103 unsigned int thickness = 1) VP_OVERRIDE;
104 void display(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
105 const vpColor &color = vpColor::green, unsigned int thickness = 1) VP_OVERRIDE;
106
107 void display(const vpImage<vpRGBa> &I, const vpCameraParameters &cam, const vpColor &color = vpColor::green,
108 unsigned int thickness = 1);
109 void display(const vpImage<vpRGBa> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
110 const vpColor &color = vpColor::green, unsigned int thickness = 1);
111
112 vpCircle *duplicate() const VP_OVERRIDE;
113
114 double get_x() const { return p[0]; }
115 double get_y() const { return p[1]; }
116
117 double get_n20() const { const unsigned int index_2 = 2; return p[index_2]; }
118 double get_n11() const { const unsigned int index_3 = 3; return p[index_3]; }
119 double get_n02() const { const unsigned int index_4 = 4; return p[index_4]; }
120
121 double getA() const { const unsigned int index_0 = 0; return cP[index_0]; }
122 double getB() const { const unsigned int index_1 = 1; return cP[index_1]; }
123 double getC() const { const unsigned int index_2 = 2; return cP[index_2]; }
124
125 double getX() const { const unsigned int index_3 = 3; return cP[index_3]; }
126 double getY() const { const unsigned int index_4 = 4; return cP[index_4]; }
127 double getZ() const { const unsigned int index_5 = 5; return cP[index_5]; }
128
129 double getR() const { const unsigned int index_6 = 6; return cP[index_6]; }
130
131#if (VISP_CXX_STANDARD > VISP_CXX_STANDARD_98)
132 vpCircle &operator=(const vpCircle &) = default;
133#endif
134 void projection() VP_OVERRIDE;
135 void projection(const vpColVector &cP, vpColVector &p) const VP_OVERRIDE;
136 void setWorldCoordinates(const vpColVector &oP) VP_OVERRIDE;
137
138 void setWorldCoordinates(double oA, double oB, double oC, double oX, double oY, double oZ, double R);
139
140 //###################
141 // Static Functions
142 //###################
143 static void computeIntersectionPoint(const vpCircle &circle, const vpCameraParameters &cam, const double &rho,
144 const double &theta, double &i, double &j);
145
146public:
147#if defined(VISP_BUILD_DEPRECATED_FUNCTIONS)
152
158 VP_DEPRECATED double get_mu20() const { const unsigned int index_2 = 2; return p[index_2]; }
165 VP_DEPRECATED double get_mu11() const { const unsigned int index_3 = 3; return p[index_3]; }
172 VP_DEPRECATED double get_mu02() const { const unsigned int index_4 = 4; return p[index_4]; }
174#endif
175protected:
176 void init() VP_OVERRIDE;
177};
178END_VISP_NAMESPACE
179#endif
Generic class defining intrinsic camera parameters.
Class that defines a 3D circle in the object frame and allows forward projection of a 3D circle in th...
Definition vpCircle.h:87
VP_DEPRECATED double get_mu02() const
Definition vpCircle.h:172
double get_n02() const
Definition vpCircle.h:119
void projection() VP_OVERRIDE
Definition vpCircle.cpp:151
double get_n11() const
Definition vpCircle.h:118
double getR() const
Definition vpCircle.h:129
void setWorldCoordinates(const vpColVector &oP) VP_OVERRIDE
Definition vpCircle.cpp:58
double get_n20() const
Definition vpCircle.h:117
double getC() const
Definition vpCircle.h:123
vpCircle & operator=(const vpCircle &)=default
VP_DEPRECATED double get_mu11() const
Definition vpCircle.h:165
vpCircle(const vpCircle &)=default
double getZ() const
Definition vpCircle.h:127
double getA() const
Definition vpCircle.h:121
double getY() const
Definition vpCircle.h:126
double get_x() const
Definition vpCircle.h:114
VP_DEPRECATED double get_mu20() const
Definition vpCircle.h:158
double getB() const
Definition vpCircle.h:122
virtual ~vpCircle() VP_OVERRIDE=default
double get_y() const
Definition vpCircle.h:115
static void computeIntersectionPoint(const vpCircle &circle, const vpCameraParameters &cam, const double &rho, const double &theta, double &i, double &j)
Definition vpCircle.cpp:458
double getX() const
Definition vpCircle.h:125
Implementation of column vector and the associated operations.
Class to define RGB colors available for display functionalities.
Definition vpColor.h:157
static const vpColor green
Definition vpColor.h:201
virtual void projection()=0
virtual void changeFrame(const vpHomogeneousMatrix &cMo, vpColVector &cP) const =0
virtual void init()=0
virtual void display(const vpImage< unsigned char > &I, const vpCameraParameters &cam, const vpColor &color=vpColor::green, unsigned int thickness=1)=0
Implementation of an homogeneous matrix and operations on such kind of matrices.
Definition of the vpImage class member functions.
Definition vpImage.h:131
vpColVector cP
Definition vpTracker.h:73
vpColVector p
Definition vpTracker.h:69