33 #include "DGtal/base/Common.h"
34 #include "DGtal/helpers/StdDefs.h"
35 #include "ConfigExamples.h"
36 #include "DGtal/io/viewers/Viewer3D.h"
39 #include "DGtal/geometry/curves/parametric/EllipticHelix.h"
40 #include "DGtal/geometry/curves/parametric/NaiveParametricCurveDigitizer3D.h"
43 #ifdef WITH_VISU3D_QGLVIEWER
44 #include "DGtal/io/DrawWithDisplay3DModifier.h"
50 using namespace DGtal;
52 using namespace functors;
56 unsigned char findMainAxis (
const T & curve,
const long double & t )
59 value[0] = std::abs ( curve.xp ( t )[0] );
60 value[1] = std::abs ( curve.xp ( t )[1] );
61 value[2] = std::abs ( curve.xp ( t )[2] );
63 if ( value[0] >= value[1] && value[0] >= value[2] )
65 else if ( value[1] >= value[0] && value[1] >= value[2] )
72 int main(
int argc,
char** argv )
74 QApplication application(argc,argv);
81 trace.
info() <<
"exampleParamCurve3dDigitization" << endl;
86 MyDigitalCurve digitalCurve;
88 MyHelix helix( 15, 10, 1 );
90 digitize.init ( M_PI / 2., ( MyHelix::getPeriod() * 10. ) + M_PI / 2., 0.0001 );
95 digitize.digitize( back_insert_iterator < MyDigitalCurve> ( digitalCurve ), back_insert_iterator < MyMetaData > ( metaData ) );
98 trace.
info() <<
"Number of points: " << digitalCurve.size () <<
" number of metadata: " << metaData.size () << endl;
103 for (
unsigned int i = 0; i < digitalCurve.size ( ); i++ )
105 if (
findMainAxis ( helix, metaData.at ( i ).first ) == 0 )
107 if (
findMainAxis ( helix, metaData.at ( i ).first ) == 1 )
109 if (
findMainAxis ( helix, metaData.at ( i ).first ) == 2 )
111 viewer <<
SetMode3D ( digitalCurve.at ( i ).className ( ),
"PavingWired" ) << digitalCurve.at ( i );
114 viewer << Viewer3D<>::updateDisplay;
116 return application.exec();
Structure representing an RGB triple with alpha component.
virtual void setFillColor(DGtal::Color aColor)
Aim: Implement a parametric curve – elliptic helix.
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)