46 #include <visp3/core/vpImagePoint.h>
47 #include <visp3/core/vpMatrix.h>
48 #include <visp3/core/vpMath.h>
49 #include <visp3/me/vpMeSite.h>
50 #include <visp3/core/vpBSpline.h>
51 #include <visp3/core/vpList.h>
92 static vpMatrix computeCurveDers(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
108 for (
unsigned int i = 0; i < weights.size(); i++)
109 list.push_back(*(&(weights[0])+i));
119 for(std::list<double>::const_iterator it=list.begin(); it!=list.end(); ++it){
120 weights.push_back(*it);
124 static vpImagePoint computeCurvePoint(
double l_u,
unsigned int l_i,
unsigned int l_p, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
127 static vpImagePoint* computeCurveDersPoint(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
128 vpImagePoint* computeCurveDersPoint(
double u,
unsigned int der);
130 static void curveKnotIns(
double l_u,
unsigned int l_k,
unsigned int l_s,
unsigned int l_r,
unsigned int l_p, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
131 void curveKnotIns(
double u,
unsigned int s = 0,
unsigned int r = 1);
133 static void refineKnotVectCurve(
double* l_x,
unsigned int l_r,
unsigned int l_p, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
134 void refineKnotVectCurve(
double* x,
unsigned int r);
136 static unsigned int removeCurveKnot(
double l_u,
unsigned int l_r,
unsigned int l_num,
double l_TOL,
unsigned int l_s,
unsigned int l_p, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
137 unsigned int removeCurveKnot(
double l_u,
unsigned int l_r,
unsigned int l_num,
double l_TOL);
139 static void globalCurveInterp(std::vector<vpImagePoint> &l_crossingPoints,
unsigned int l_p, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
141 void globalCurveInterp(
const std::list<vpImagePoint>& l_crossingPoints);
142 void globalCurveInterp(
const std::list<vpMeSite>& l_crossingPoints);
143 void globalCurveInterp();
145 static void globalCurveApprox(std::vector<vpImagePoint> &l_crossingPoints,
unsigned int l_p,
unsigned int l_n, std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints, std::vector<double> &l_weights);
147 void globalCurveApprox(
const std::list<vpImagePoint>& l_crossingPoints,
unsigned int n);
148 void globalCurveApprox(
const std::list<vpMeSite>& l_crossingPoints,
unsigned int n);
149 void globalCurveApprox(
unsigned int n);
static vpImagePoint * computeCurveDers(double l_u, unsigned int l_i, unsigned int l_p, unsigned int l_der, std::vector< double > &l_knots, std::vector< vpImagePoint > &l_controlPoints)
Implementation of a matrix and operations on matrices.
Provide simple list management.
void get_weights(std::list< double > &list) const
Class that provides tools to compute and manipulate a B-Spline curve.
std::vector< double > weights
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
void set_weights(const std::list< double > &list)
Class that provides tools to compute and manipulate a Non Uniform Rational B-Spline curve...
static vpImagePoint computeCurvePoint(double l_u, unsigned int l_i, unsigned int l_p, std::vector< double > &l_knots, std::vector< vpImagePoint > &l_controlPoints)