Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #ifndef WAVEPACKET_BEZIER_FIT_H__
00035 #define WAVEPACKET_BEZIER_FIT_H__
00036
00037
00038 #include "common/common.h"
00039
00040 #include "bezier/bezier.h"
00041 #include "bezier/quad.h"
00042
00043
00044
00045
00046
00047
00048 namespace bezier {
00049
00050
00051
00052
00053
00054
00055
00056
00057 typedef std::vector<quad_bezier_t> quad_path_t;
00058
00059
00060 void getQuadPathFromRawPoints(IN const point_t * p,
00061 IN int nPoints,
00062 IN float ds,
00063 OUT quad_path_t& path);
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073 typedef std::vector<curve_t> path_t;
00074
00075 typedef path_t cubic_path_t;
00076
00077 void getCubicPathFromRawPoints(IN const point_t * p,
00078 IN int nPoints,
00079 IN float ds,
00080 OUT cubic_path_t& path);
00081
00082
00083 float getCoefficient(IN const float * x, IN int nPoints, IN int degree) throw();
00084 void removeCoefficient(IO float * x, IN int nPoints,
00085 IN float coeff, IN int degree) throw();
00086
00087 struct fit_t {
00088 fit_t(void) throw() { this->clear(); }
00089 void clear(void) throw() {
00090 q0 = a = b = c = 0.0;
00091 }
00092
00093 void dump(const char * title) const throw() {
00094 DPRINTF(" %s q0=%5.2f a=%5.2f b=%5.2f c=%5.2f",
00095 title, q0, a, b, c);
00096 }
00097
00098 float getq(IN float t) const throw() {
00099 float q = q0;
00100 q += c * t;
00101 q += b * t * t;
00102 q += a * t * t * t;
00103 return q;
00104 }
00105
00106
00107 float q0;
00108 float a;
00109 float b;
00110 float c;
00111 };
00112
00113
00114 void fitPoints(IN const float * x, IN int nPoints,
00115 IN float slope,
00116 OUT fit_t& fit) throw();
00117
00118 int getCuspIndices(IN const point_t * p, IN int nPoints,
00119 OUT int ** cusps);
00120
00121 float getFitQuality(IN const point_t * p, IN int nPoints,
00122 IN const curve_t& curve) throw();
00123
00124 void fitPath(IN const point_t * p, IN int nPoints,
00125 IN float tolerance,
00126 OUT path_t& path);
00127
00128 void respacePath(IN const point_t * p, IN int nPoints,
00129 IN float ds,
00130 OUT point_t ** out_p,
00131 OUT int& newPoints);
00132
00133 };
00134
00135 #endif // WAVEPACKET_BEZIER_FIT_H__
00136