42 #include <visp3/core/vpImagePoint.h>
46 #include <visp3/core/vpMatrix.h>
49 #ifndef DOXYGEN_SHOULD_SKIP_THIS
61 typedef struct vpBasisFunction
111 std::vector<vpImagePoint> controlPoints;
113 std::vector<double> knots;
117 std::vector<vpImagePoint> crossingPoints;
129 inline unsigned int get_p()
const {
return p; }
140 for (
unsigned int i = 0; i < controlPoints.size(); i++) {
141 list.push_back(*(&(controlPoints[0]) + i));
153 for (
unsigned int i = 0; i < knots.size(); i++) {
154 list.push_back(*(&(knots[0]) + i));
167 for (
unsigned int i = 0; i < crossingPoints.size(); i++) {
168 list.push_back(*(&(crossingPoints[0]) + i));
177 inline void set_p(
unsigned int degree) { this->p = degree; }
186 controlPoints.clear();
187 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
188 controlPoints.push_back(*it);
200 for (std::list<double>::const_iterator it = list.begin(); it != list.end(); ++it) {
201 knots.push_back(*it);
213 crossingPoints.clear();
214 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
215 crossingPoints.push_back(*it);
219 static unsigned int findSpan(
double l_u,
unsigned int l_p,
const std::vector<double> &l_knots);
220 unsigned int findSpan(
double u)
const;
222 static vpBasisFunction *computeBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
223 const std::vector<double> &l_knots);
224 vpBasisFunction *computeBasisFuns(
double u)
const;
226 static vpBasisFunction **computeDersBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
227 const std::vector<double> &l_knots);
228 vpBasisFunction **computeDersBasisFuns(
double u,
unsigned int der)
const;
230 static vpImagePoint computeCurvePoint(
double l_u,
unsigned int l_i,
unsigned int l_p,
const std::vector<double> &l_knots,
231 const std::vector<vpImagePoint> &l_controlPoints);
234 static vpImagePoint *computeCurveDers(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
235 const std::vector<double> &l_knots,
const std::vector<vpImagePoint> &l_controlPoints);
236 vpImagePoint *computeCurveDers(
double u,
unsigned int der)
const;
Class that provides tools to compute and manipulate a B-Spline curve.
void get_controlPoints(std::list< vpImagePoint > &list) const
void set_p(unsigned int degree)
void set_crossingPoints(const std::list< vpImagePoint > &list)
unsigned int get_p() const
void get_crossingPoints(std::list< vpImagePoint > &list) const
void set_controlPoints(const std::list< vpImagePoint > &list)
void get_knots(std::list< double > &list) const
void set_knots(const std::list< double > &list)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...