00001 00061 #ifndef __POLY2D_H__ 00062 #define __POLY2D_H__ 00063 00064 namespace cob_3d_segmentation 00065 { 00066 namespace Contour2D 00067 { 00068 struct spline2D { int v, x, y, bf; }; 00069 00070 extern int SplineMap[9]; 00071 00072 extern spline2D g_Splines[9][256]; 00073 bool generateSpline2D(); 00074 } 00075 } 00076 00077 #endif