DGtal  1.2.0
Functions
exampleTrofoliKnot.cpp File Reference
#include <iostream>
#include <iterator>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "ConfigExamples.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/geometry/curves/parametric/Knot_3_1.h"
#include "DGtal/geometry/curves/parametric/NaiveParametricCurveDigitizer3D.h"
Include dependency graph for exampleTrofoliKnot.cpp:

Go to the source code of this file.

Functions

template<typename T >
unsigned char findMainAxis (const T &curve, const long double &t)
 
int main (int argc, char **argv)
 

Detailed Description

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Author
Kacper Pluta (kacper.pluta@esiee.fr ) Laboratoire d'Informatique Gaspard-Monge - LIGM, A3SI, France
Date
2018/08/03

An example file for ParametriCurveDigitizer3D.

This file is part of the DGtal library.

Definition in file exampleTrofoliKnot.cpp.

Function Documentation

◆ findMainAxis()

template<typename T >
unsigned char findMainAxis ( const T &  curve,
const long double &  t 
)
inline

Definition at line 54 of file exampleTrofoliKnot.cpp.

55 {
56  RealPoint value;
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] );
60 
61  if ( value[0] >= value[1] && value[0] >= value[2] )
62  return 0;
63  else if ( value[1] >= value[0] && value[1] >= value[2] )
64  return 1;
65  else
66  return 2;
67 }
Aim: Implements basic operations that will be used in Point and Vector classes.
Definition: PointVector.h:593

Referenced by main().

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 70 of file exampleTrofoliKnot.cpp.

71 {
72  QApplication application(argc,argv);
73  typedef Knot_3_1< Space > MyKnot;
77 
78  trace.info() << "exampleParamCurve3dDigitization" << endl;
79 
80  Viewer3D<> viewer;
81 
82  MyDigitalCurve digitalCurve;
83  MyMetaData metaData;
84  MyKnot knot ( 10, 10, 10 );
85  Digitizer digitize;
86  digitize.attach ( &knot );
87  digitize.init ( -2.1, 2.1, 0.0001 );
88  digitize.digitize( back_insert_iterator < MyDigitalCurve> ( digitalCurve ), back_insert_iterator < MyMetaData > ( metaData ) );
89 
90  trace.info() << "Number of points: " << digitalCurve.size () << " number of metadata: " << metaData.size () << endl;
91 
92  viewer.show();
93  for ( unsigned int i = 0; i < digitalCurve.size ( ); i++ )
94  {
95  if ( findMainAxis ( knot, metaData.at ( i ).first ) == 0 )
96  viewer.setFillColor ( Color ( 255, 0, 0, 128 ) );
97  if ( findMainAxis ( knot, metaData.at ( i ).first ) == 1 )
98  viewer.setFillColor ( Color ( 0, 255, 0, 128 ) );
99  if ( findMainAxis ( knot, metaData.at ( i ).first ) == 2 )
100  viewer.setFillColor ( Color ( 0, 0, 255, 128 ) );
101  viewer << SetMode3D ( digitalCurve.at ( i ).className ( ), "PavingWired" ) << digitalCurve.at ( i );
102  }
103  viewer << Viewer3D<>::updateDisplay;
104 
105  return application.exec();
106 }
Structure representing an RGB triple with alpha component.
Definition: Color.h:67
virtual void setFillColor(DGtal::Color aColor)
Aim: Implement a parametrized knot 3, 1.
Definition: Knot_3_1.h:60
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.
std::ostream & info()
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
unsigned char findMainAxis(const T &curve, const long double &t)
Trace trace
Definition: Common.h:154
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)

References digitize(), findMainAxis(), DGtal::Trace::info(), DGtal::Display3D< Space, KSpace >::setFillColor(), DGtal::Viewer3D< TSpace, TKSpace >::show(), and DGtal::trace.