47 #include <visp3/core/vpImagePoint.h> 51 #include <visp3/core/vpMatrix.h> 53 #ifndef DOXYGEN_SHOULD_SKIP_THIS 65 typedef struct vpBasisFunction {
114 std::vector<vpImagePoint> controlPoints;
116 std::vector<double> knots;
120 std::vector<vpImagePoint> crossingPoints;
132 inline unsigned int get_p()
const {
return p; }
143 for (
unsigned int i = 0; i < controlPoints.size(); i++) {
144 list.push_back(*(&(controlPoints[0]) + i));
156 for (
unsigned int i = 0; i < knots.size(); i++) {
157 list.push_back(*(&(knots[0]) + i));
170 for (
unsigned int i = 0; i < crossingPoints.size(); i++) {
171 list.push_back(*(&(crossingPoints[0]) + i));
180 inline void set_p(
unsigned int degree) { this->p = degree; }
189 controlPoints.clear();
190 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
191 controlPoints.push_back(*it);
203 for (std::list<double>::const_iterator it = list.begin(); it != list.end(); ++it) {
204 knots.push_back(*it);
216 crossingPoints.clear();
217 for (std::list<vpImagePoint>::const_iterator it = list.begin(); it != list.end(); ++it) {
218 crossingPoints.push_back(*it);
222 static unsigned int findSpan(
double l_u,
unsigned int l_p, std::vector<double> &l_knots);
223 unsigned int findSpan(
double u);
225 static vpBasisFunction *computeBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
226 std::vector<double> &l_knots);
227 vpBasisFunction *computeBasisFuns(
double u);
229 static vpBasisFunction **computeDersBasisFuns(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
230 std::vector<double> &l_knots);
231 vpBasisFunction **computeDersBasisFuns(
double u,
unsigned int der);
233 static vpImagePoint computeCurvePoint(
double l_u,
unsigned int l_i,
unsigned int l_p, std::vector<double> &l_knots,
234 std::vector<vpImagePoint> &l_controlPoints);
237 static vpImagePoint *computeCurveDers(
double l_u,
unsigned int l_i,
unsigned int l_p,
unsigned int l_der,
238 std::vector<double> &l_knots, std::vector<vpImagePoint> &l_controlPoints);
239 vpImagePoint *computeCurveDers(
double u,
unsigned int der);
void get_controlPoints(std::list< vpImagePoint > &list) const
void get_crossingPoints(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 set_controlPoints(const std::list< vpImagePoint > &list)
Class that provides tools to compute and manipulate a B-Spline curve.
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
void get_knots(std::list< double > &list) const
void set_knots(const std::list< double > &list)