42 #include <visp3/core/vpImagePoint.h>
46 #include <visp3/core/vpMatrix.h>
48 #ifndef DOXYGEN_SHOULD_SKIP_THIS
60 typedef struct vpBasisFunction {
109 std::vector<vpImagePoint> controlPoints;
111 std::vector<double> knots;
115 std::vector<vpImagePoint> crossingPoints;
127 inline unsigned int get_p()
const {
return p; }
138 for (
unsigned int i = 0; i < controlPoints.size(); i++) {
139 list.push_back(*(&(controlPoints[0]) + i));
151 for (
unsigned int i = 0; i < knots.size(); i++) {
152 list.push_back(*(&(knots[0]) + i));
165 for (
unsigned int i = 0; i < crossingPoints.size(); i++) {
166 list.push_back(*(&(crossingPoints[0]) + i));
175 inline void set_p(
unsigned int degree) { this->p = degree; }
184 controlPoints.clear();
185 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
186 controlPoints.push_back(*it);
198 for (std::list<double>::const_iterator it = list.begin(); it != list.end(); ++it) {
199 knots.push_back(*it);
211 crossingPoints.clear();
212 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
213 crossingPoints.push_back(*it);
217 static unsigned int findSpan(
double l_u,
unsigned int l_p, std::vector<double> &l_knots);
218 unsigned int findSpan(
double u);
220 static vpBasisFunction *computeBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
221 std::vector<double> &l_knots);
222 vpBasisFunction *computeBasisFuns(
double u);
224 static vpBasisFunction **computeDersBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
225 std::vector<double> &l_knots);
226 vpBasisFunction **computeDersBasisFuns(
double u,
unsigned int der);
228 static vpImagePoint computeCurvePoint(
double l_u,
unsigned int l_i,
unsigned int l_p, std::vector<double> &l_knots,
229 std::vector<vpImagePoint> &l_controlPoints);
232 static vpImagePoint *computeCurveDers(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
233 std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints);
234 vpImagePoint *computeCurveDers(
double u,
unsigned int der);
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 ...