DGtal 2.1.1
Loading...
Searching...
No Matches
parallelIIShortcuts.cpp File Reference
#include <iostream>
#include "ConfigExamples.h"
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/helpers/Shortcuts.h"
#include "DGtal/helpers/ShortcutsGeometry.h"
#include "DGtal/io/viewers/PolyscopeViewer.h"
#include "DGtal/io/colormaps/GradientColorMap.h"
Include dependency graph for parallelIIShortcuts.cpp:

Go to the source code of this file.

Typedefs

typedef Shortcuts< Z3i::KSpaceSH3
 
typedef ShortcutsGeometry< Z3i::KSpaceSHG3
 

Functions

int main ()
 

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
David Coeurjolly (david.nosp@m..coe.nosp@m.urjol.nosp@m.ly@c.nosp@m.nrs.f.nosp@m.r) Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), INSA-Lyon, France
Date
2026/06/08

This file is part of the DGtal library.

Definition in file parallelIIShortcuts.cpp.

Typedef Documentation

◆ SH3

typedef Shortcuts<Z3i::KSpace> SH3

Definition at line 50 of file parallelIIShortcuts.cpp.

◆ SHG3

Definition at line 51 of file parallelIIShortcuts.cpp.

Function Documentation

◆ main()

int main ( void  )

[Parallel-instantiation]

[Parallel-instantiation]

[Parallel-run]

[Parallel-run]

Definition at line 54 of file parallelIIShortcuts.cpp.

55{
56
59 params( "polynomial", "goursat" )( "gridstep", 0.125 );
60 auto implicit_shape = SH3::makeImplicitShape3D ( params );
61 auto digitized_shape = SH3::makeDigitizedImplicitShape3D( implicit_shape, params );
62 auto K = SH3::getKSpace( params );
63 auto surface = SH3::makeDigitalSurface( digitized_shape, K, params );
64 auto surfels = SH3::getSurfelRange( surface, params );
66
68 trace.info()<< "Input vol domain: "<< digitized_shape->getDomain() << std::endl;
69 //Sequential
70 trace.beginBlock("Single thread");
71 auto curv = SHG3::getIIMeanCurvatures( digitized_shape, surfels, params );
73
74 //Parallel
75 trace.beginBlock("4 threads on default axis");
76 auto curv_par4 = SHG3::getIIMeanCurvatures( digitized_shape, surfels,
77 params( "ii-thread-number", 4 ));
79
80 //Parallel
81 trace.beginBlock("8 threads on axis 0");
82 auto curv_par80 = SHG3::getIIMeanCurvatures( digitized_shape, surfels,
83 params( "ii-thread-number", 8 )
84 ( "ii-split-axis", 0 ) );
86
87 //Parallel
88 trace.beginBlock("8 threads on axis 1");
89 auto curv_par81 = SHG3::getIIMeanCurvatures( digitized_shape, surfels,
90 params( "ii-thread-number", 8 )
91 ( "ii-split-axis", 1 ) );
93
94 //Parallel
95 trace.beginBlock("8 threads on axis 2");
96 auto curv_par82 = SHG3::getIIMeanCurvatures( digitized_shape, surfels,
97 params( "ii-thread-number", 8 )
98 ( "ii-split-axis", 2 ) );
100
101 //Parallel
102 trace.beginBlock("16 threads on axis 2");
103 auto curv_par16 = SHG3::getIIMeanCurvatures( digitized_shape, surfels,
104 params( "ii-thread-number", 16 )
105 ( "ii-split-axis", 2 ) );
106 trace.endBlock();
108
109 return 0;
110}
static Scalars getIIMeanCurvatures(CountedPtr< BinaryImage > bimage, const SurfelRange &surfels, const Parameters &params=parametersGeometryEstimation()|parametersKSpace())
static Parameters defaultParameters()
static KSpace getKSpace(const Point &low, const Point &up, Parameters params=parametersKSpace())
Definition Shortcuts.h:329
static CountedPtr< DigitizedImplicitShape3D > makeDigitizedImplicitShape3D(CountedPtr< ImplicitShape3D > shape, Parameters params=parametersDigitizedImplicitShape3D())
Definition Shortcuts.h:520
static SurfelRange getSurfelRange(CountedPtr< ::DGtal::DigitalSurface< TDigitalSurfaceContainer > > surface, const Parameters &params=parametersDigitalSurface())
Definition Shortcuts.h:1808
static CountedPtr< DigitalSurface > makeDigitalSurface(CountedPtr< TPointPredicate > bimage, const KSpace &K, const Parameters &params=parametersDigitalSurface())
Definition Shortcuts.h:1470
static Parameters defaultParameters()
Definition Shortcuts.h:200
static CountedPtr< ImplicitShape3D > makeImplicitShape3D(const Parameters &params=parametersImplicitShape3D())
Definition Shortcuts.h:279
void beginBlock(const std::string &keyword="")
std::ostream & info()
double endBlock()
CountedPtr< SH3::DigitalSurface > surface
Trace trace
KSpace K

References DGtal::Trace::beginBlock(), DGtal::Shortcuts< TKSpace >::defaultParameters(), DGtal::ShortcutsGeometry< TKSpace >::defaultParameters(), DGtal::Trace::endBlock(), DGtal::ShortcutsGeometry< TKSpace >::getIIMeanCurvatures(), DGtal::Shortcuts< TKSpace >::getKSpace(), DGtal::Shortcuts< TKSpace >::getSurfelRange(), DGtal::Trace::info(), K, DGtal::Shortcuts< TKSpace >::makeDigitalSurface(), DGtal::Shortcuts< TKSpace >::makeDigitizedImplicitShape3D(), DGtal::Shortcuts< TKSpace >::makeImplicitShape3D(), surface, and DGtal::trace.