49 #include <visp/vpFeatureBuilder.h>
50 #include <visp/vpMath.h>
71 if (fabs(t.
cP[3]) > fabs(t.
cP[7]))
119 double a = t.
getA() ;
120 double b = t.
getB() ;
121 double c = t.
getC() ;
123 double x0 = t.
getX() ;
124 double y0 = t.
getY() ;
125 double z0 = t.
getZ() ;
127 double R = t.
getR() ;
134 double alpha1 = (1 - a*a)*x0 - a*b*y0 - a*c*z0;
135 double beta1 = -a*b*x0 + (1 - b*b)*y0 - b*c*z0;
136 double gamma1 = -a*c*x0 - b*c*y0 + (1 - c*c)*z0;
148 s.
setABCD(alpha1,beta1,gamma1,D) ;
229 if (thetap >= 0 && thetap < M_PI/2)
231 thetap = M_PI/2 - thetap;
234 else if (thetap >= M_PI/2 && thetap < 3*M_PI/2)
236 thetap = 3*M_PI/2 + M_PI - thetap;
239 else if (thetap >= 3*M_PI/2 && thetap <= 2*M_PI)
241 thetap = M_PI/2 + 2*M_PI - thetap;
250 while (theta > M_PI) { theta -= 2*M_PI ; }
251 while (theta < -M_PI) { theta += 2*M_PI ; }
void setABCD(const double A, const double B, const double C, const double D)
void buildFrom(const double rho, const double theta)
Class that defines a line in the object frame, the camera frame and the image plane. All the parameters must be set in meter.
static double sqr(double x)
Class that tracks in an image a line moving edges.
Generic class defining intrinsic camera parameters.
Class that defines a 2D line visual feature which is composed by two parameters that are and ...
Class that defines what is a cylinder.
static void convertLine(const vpCameraParameters &cam, const double &rho_p, const double &theta_p, double &rho_m, double &theta_m)
line coordinates conversion (rho,theta)
static void create(vpFeaturePoint &s, const vpCameraParameters &cam, const vpDot &d)
void setRhoTheta(const double rho, const double theta)