33 #include "DGtal/base/Common.h"
34 #include "DGtal/helpers/StdDefs.h"
35 #include "ConfigExamples.h"
36 #include "DGtal/io/viewers/Viewer3D.h"
38 #include "DGtal/geometry/curves/parametric/Knot_3_1.h"
39 #include "DGtal/geometry/curves/parametric/NaiveParametricCurveDigitizer3D.h"
41 #ifdef WITH_VISU3D_QGLVIEWER
42 #include "DGtal/io/DrawWithDisplay3DModifier.h"
48 using namespace DGtal;
50 using namespace functors;
54 unsigned char findMainAxis (
const T & curve,
const long double & t )
57 value[0] = std::abs ( curve.xp ( t )[0] );
58 value[1] = std::abs ( curve.xp ( t )[1] );
59 value[2] = std::abs ( curve.xp ( t )[2] );
61 if ( value[0] >= value[1] && value[0] >= value[2] )
63 else if ( value[1] >= value[0] && value[1] >= value[2] )
70 int main(
int argc,
char** argv )
72 QApplication application(argc,argv);
78 trace.
info() <<
"exampleParamCurve3dDigitization" << endl;
82 MyDigitalCurve digitalCurve;
84 MyKnot knot ( 10, 10, 10 );
88 digitize.digitize( back_insert_iterator < MyDigitalCurve> ( digitalCurve ), back_insert_iterator < MyMetaData > ( metaData ) );
90 trace.
info() <<
"Number of points: " << digitalCurve.size () <<
" number of metadata: " << metaData.size () << endl;
93 for (
unsigned int i = 0; i < digitalCurve.size ( ); i++ )
95 if (
findMainAxis ( knot, metaData.at ( i ).first ) == 0 )
97 if (
findMainAxis ( knot, metaData.at ( i ).first ) == 1 )
99 if (
findMainAxis ( knot, metaData.at ( i ).first ) == 2 )
101 viewer <<
SetMode3D ( digitalCurve.at ( i ).className ( ),
"PavingWired" ) << digitalCurve.at ( i );
103 viewer << Viewer3D<>::updateDisplay;
105 return application.exec();
Structure representing an RGB triple with alpha component.
virtual void setFillColor(DGtal::Color aColor)
Aim: Implement a parametrized knot 3, 1.
Aim: Digitization of 3D parametric curves. This method produces, for good parameters step and k_next,...
std::vector< std::pair< long double, unsigned int > > MetaData
std::vector< Point > DigitalCurve
Digital curve type.
Aim: Implements basic operations that will be used in Point and Vector classes.
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
int main(int argc, char **argv)
unsigned char findMainAxis(const T &curve, const long double &t)
DGtal is the top-level namespace which contains all DGtal functions and types.
Modifier class in a Display3D stream. Useful to choose your own mode for a given class....
void digitize(Shape &shape, std::vector< SCell > &sCells0, std::vector< SCell > &sCells1, KSpace &kspace, const double h)