32 #include "DGtal/base/Common.h"
33 #include "DGtal/helpers/StdDefs.h"
34 #include "ConfigExamples.h"
35 #include "DGtal/io/viewers/Viewer3D.h"
37 #include "DGtal/geometry/curves/parametric/EllipticHelix.h"
38 #include "DGtal/geometry/curves/parametric/NaiveParametricCurveDigitizer3D.h"
40 #include "DGtal/geometry/curves/parametric/DecoratorParametricCurveTransformation.h"
41 #include "DGtal/images/RigidTransformation3D.h"
44 #ifdef WITH_VISU3D_QGLVIEWER
45 #include "DGtal/io/DrawWithDisplay3DModifier.h"
51 using namespace DGtal;
53 using namespace functors;
57 unsigned char findMainAxis (
const T & curve,
const long double & t )
60 value[0] = std::abs ( curve.xp ( t )[0] );
61 value[1] = std::abs ( curve.xp ( t )[1] );
62 value[2] = std::abs ( curve.xp ( t )[2] );
64 if ( value[0] >= value[1] && value[0] >= value[2] )
66 else if ( value[1] >= value[0] && value[1] >= value[2] )
73 int main(
int argc,
char** argv )
75 QApplication application(argc,argv);
84 trace.
info() <<
"exampleParamCurve3dDigitizationTransformationDecorator" << endl;
91 MyDigitalCurve digitalCurve;
92 MyHelix helix( 30, 20, 1 );
96 double angle = M_PI/3.;
99 MyRotatedCurve rotCurve ( helix, trans );
105 digitize.init ( 0, MyHelix::getPeriod() * 10., 0.0001 );
106 digitize.digitize( back_insert_iterator < MyDigitalCurve> ( digitalCurve ), back_insert_iterator < MyMetaData > ( metaData ) );
109 trace.
info() <<
"Number of points: " << digitalCurve.size () <<
" number of metadata: " << metaData.size () << endl;
112 for (
unsigned int i = 0; i < digitalCurve.size ( ); i++ )
114 if (
findMainAxis ( rotCurve, metaData.at ( i ).first ) == 0 )
116 if (
findMainAxis ( rotCurve, metaData.at ( i ).first ) == 1 )
118 if (
findMainAxis ( rotCurve, metaData.at ( i ).first ) == 2 )
120 viewer <<
SetMode3D ( digitalCurve.at ( i ).className ( ),
"PavingWired" ) << digitalCurve.at ( i );
122 viewer << Viewer3D<>::updateDisplay;
124 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...
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)