DGtal 1.4.2
Loading...
Searching...
No Matches
exampleMaximalSegmentSliceEstimation.cpp File Reference
#include <iostream>
#include "ConfigExamples.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/base/Common.h"
#include "DGtal/geometry/surfaces/estimation/MaximalSegmentSliceEstimation.h"
#include "DGtal/helpers/Shortcuts.h"
#include "DGtal/io/viewers/Viewer3D.h"
Include dependency graph for exampleMaximalSegmentSliceEstimation.cpp:

Go to the source code of this file.

Typedefs

using KSpace = Z3i::KSpace
 
using SH3 = Shortcuts< KSpace >
 
using Surface = SH3::DigitalSurface
 
using Surfel = Surface::Surfel
 
using RealPoint = SH3::RealPoint
 
using Point = SH3::Point
 

Functions

RealPoint centerSurfel (KSpace const &K, SH3::SCell const &s)
 
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
Jocelyn Meyron (jocel.nosp@m.yn.m.nosp@m.eyron.nosp@m.@lir.nosp@m.is.cn.nosp@m.rs.f.nosp@m.r ) Laboratoire d'InfoRmatique en Image et Systemes d'information - LIRIS (CNRS, UMR 5205), CNRS, France
Date
2020/12/15

An example file that shows how to construct and use a DGtal::MaximalSegmentSliceEstimation on a digital surface.

This file is part of the DGtal library.

Definition in file exampleMaximalSegmentSliceEstimation.cpp.

Typedef Documentation

◆ KSpace

Definition at line 43 of file exampleMaximalSegmentSliceEstimation.cpp.

◆ Point

using Point = SH3::Point

Definition at line 48 of file exampleMaximalSegmentSliceEstimation.cpp.

◆ RealPoint

using RealPoint = SH3::RealPoint

Definition at line 47 of file exampleMaximalSegmentSliceEstimation.cpp.

◆ SH3

using SH3 = Shortcuts<KSpace>

Definition at line 44 of file exampleMaximalSegmentSliceEstimation.cpp.

◆ Surface

using Surface = SH3::DigitalSurface

◆ Surfel

using Surfel = Surface::Surfel

Definition at line 46 of file exampleMaximalSegmentSliceEstimation.cpp.

Function Documentation

◆ centerSurfel()

RealPoint centerSurfel ( KSpace const &  K,
SH3::SCell const &  s 
)

Definition at line 50 of file exampleMaximalSegmentSliceEstimation.cpp.

51{
52 auto pointels = SH3::getPrimalVertices(K, s, true);
53
54 Point p = K.uCoords(pointels[0]),
55 u = K.uCoords(pointels[1]) - p,
56 v = K.uCoords(pointels[3]) - p;
57
58 static const RealPoint shift(-0.5, -0.5, -0.5);
59
60 return p + 0.5 * u + 0.5 * v + shift;
61}
Point uCoords(const Cell &c) const
Return its digital coordinates.
MyPointD Point
KSpace K

References K, and DGtal::KhalimskySpaceND< dim, TInteger >::uCoords().

Referenced by main().

◆ main()

int main ( int  argc,
char **  argv 
)

[MaximalSegmentSliceEstimationConstructionUsage]

[MaximalSegmentSliceEstimationConstructionUsage]

Definition at line 65 of file exampleMaximalSegmentSliceEstimation.cpp.

66{
67 QApplication application(argc, argv);
68
69 auto params = SH3::defaultParameters();
70 params("polynomial", "ellipsoid")("gridstep", "1.0");
71 auto implicit_shape = SH3::makeImplicitShape3D ( params );
72 auto digitized_shape = SH3::makeDigitizedImplicitShape3D( implicit_shape, params );
73 auto K = SH3::getKSpace( params );
74 auto binary_image = SH3::makeBinaryImage( digitized_shape, params );
75 auto surface = SH3::makeDigitalSurface( binary_image, K, params );
76 auto surfels = SH3::getSurfelRange(surface);
77
78 double gridstep = params["gridstep"].as<double>();
79
80 Viewer3D<> viewer(K);
81 viewer << SetMode3D(Surfel().className(), "Basic");
82 viewer.show();
83
85 // Instantiation
87 Estimator estimator;
88 estimator.init(gridstep, surfels.begin(), surfels.end());
89 estimator.attach(surface);
90
91 // Usage
92 std::vector<Estimator::Quantity> quantities;
93 estimator.eval(surfels.begin(), surfels.end(), std::back_inserter(quantities));
95
96 Color fillColor = viewer.getFillColor();
97
98 for (std::size_t i = 0; i < surfels.size(); ++i)
99 {
100 const Surfel& s = surfels[i];
101 const Estimator::Quantity& normal = quantities[i];
102
103 const RealPoint& n = normal.getNormalized();
104 RealPoint origin = centerSurfel(K, s);
105
106 viewer.setFillColor(fillColor);
107 viewer << s;
108
109 viewer.setLineColor(Color::Green);
110 viewer.addLine(origin, origin + 1.5 * n, 0.3);
111 }
112
113 viewer << Viewer3D<>::updateDisplay;
114 application.exec();
115
116 return 0;
117}
Structure representing an RGB triple with alpha component.
Definition Color.h:68
static const Color Green
Definition Color.h:417
void init(Scalar const &h, SurfelConstIterator itb, SurfelConstIterator ite)
PointVector< dim, double, std::array< double, dim > > getNormalized() const
CountedPtr< SH3::DigitalSurface > surface
CountedPtr< SH3::BinaryImage > binary_image
Surface::Surfel Surfel
RealPoint centerSurfel(KSpace const &K, SH3::SCell const &s)
PlaneProbingParallelepipedEstimator< DigitalPlane, ProbingMode::R1 > Estimator
Modifier class in a Display3D stream. Useful to choose your own mode for a given class....
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.

References binary_image, centerSurfel(), DGtal::PointVector< dim, TEuclideanRing, TContainer >::getNormalized(), DGtal::Color::Green, DGtal::MaximalSegmentSliceEstimation< TSurface >::init(), K, and surface.