DGtal  1.4.beta
tutorial-examples/volDTGranulo.cpp

Example of tutorial 3: Volumetric analysis and Granulometry

See also
Tutorial: Volumetric analysis and Granulometry
result on obtained examples/samples/Al.100.vol.
#include <iostream>
#include <fstream>
#include <algorithm>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/images/ImageContainerBySTLVector.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/writers/VolWriter.h"
#include "DGtal/images/SimpleThresholdForegroundPredicate.h"
#include "DGtal/geometry/volumes/distance/DistanceTransformation.h"
#include "DGtal/shapes/implicit/ImplicitBall.h"
#include "DGtal/base/BasicFunctors.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/io/colormaps/GradientColorMap.h"
#include <boost/algorithm/minmax_element.hpp>
using namespace DGtal;
int main(int argc, char ** argv)
{
//Loarding the image
typedef ImageContainerBySTLVector<Z3i::Domain, unsigned int> Image;
trace.info() << image << std::endl;
//Viewer
QApplication application(argc,argv);
Viewer3D<> viewer;
viewer.show();
for(Image::Domain::ConstIterator it = image.domain().begin(),
itend = image.domain().end(); it != itend; ++it)
if (image(*it) != 0)
viewer << *it;
viewer << DGtal::Viewer3D<>::updateDisplay;
trace.info() << "viewer launched..."<<std::endl;
bool res = application.exec();
//DT
typedef functors::SimpleThresholdForegroundPredicate<Image> Predicate;
Predicate binaryshape(image, 0);
typedef DistanceTransformation< Z3i::Space, Predicate, Z3i::L2Metric> DT;
DT distancemap(image.domain(), binaryshape, l2);
//Viewer
QApplication application2(argc,argv);
Viewer3D<> viewer2;
viewer2.show();
DT::Value maxDT = (*boost::first_max_element(distancemap.constRange().begin(),
distancemap.constRange().end()));
GradientColorMap<DT::Value> gradient( 0, maxDT);
gradient.addColor(DGtal::Color::Blue);
gradient.addColor(DGtal::Color::Green);
gradient.addColor(DGtal::Color::Yellow);
gradient.addColor(DGtal::Color::Red);
trace.info() << "we display the dt map"<<std::endl;
int cpt=0;
viewer2 << DGtal::ClippingPlane(1,0,0,-10.1);
for(DT::Domain::ConstIterator it = distancemap.domain().begin(),
itend = distancemap.domain().end(); it != itend;
++it)
if (distancemap(*it) > 0)
{
DT::Value val= distancemap( *it );
DGtal::Color c= gradient(val);
viewer2 << DGtal::CustomColors3D(c,c) << *it ;
cpt++;
}
trace.info() << "Got "<<cpt<<" points."<<std::endl;
viewer2 << DGtal::Viewer3D<>::updateDisplay;
trace.info() << "viewer2 launched..."<<std::endl;
res = res && application2.exec();
//Granulo
Image imageGranulo ( image.domain() );
for(Image::Range::Iterator it = imageGranulo.range().begin(), itend= imageGranulo.range().end();
it != itend; ++it)
*it = 0;
trace.info() << "Computing the granulometry"<<std::endl;
cpt=0;
for(Image::Domain::ConstIterator it = imageGranulo.domain().begin(),
itend = imageGranulo.domain().end(); it != itend; ++it)
{
if (distancemap(*it) > 0)
{
//Construct the sphere with radius from distancemap(*it)
unsigned int radius = (unsigned int)distancemap(*it);
ImplicitBall<Z3i::Space> ball(center,radius);
Z3i::Point low(ball.getLowerBound() - Z3i::RealPoint::diagonal(1.0), functors::Floor<>());
Z3i::Point up (ball.getUpperBound() + Z3i::RealPoint::diagonal(1.0), functors::Ceil<>());
Z3i::Domain dom(low,up);
for(Z3i::Domain::ConstIterator itball = dom.begin(), itendball= dom.end();
itball != itendball; itball++)
if (imageGranulo.domain().isInside(*itball) &&
( ball(*itball) > 0) &&
(imageGranulo(*itball) < radius))
imageGranulo.setValue(*itball, radius);
cpt++;
}
}
trace.info() << "Granulometry ok nbBalls="<<cpt<< std::endl;
VolWriter<Image, functors::Cast<unsigned char> >::exportVol("granulo.vol", imageGranulo);
trace.info() << "Save OK"<< std::endl;
//Viewer
QApplication application3(argc,argv);
Viewer3D<> viewer3;
viewer3.show();
Image::Value maxG = (*boost::first_max_element(imageGranulo.constRange().begin(),
imageGranulo.constRange().end()));
GradientColorMap<Image::Value> gradient2( 0, maxG);
gradient2.addColor(DGtal::Color::Blue);
gradient2.addColor(DGtal::Color::Green);
gradient2.addColor(DGtal::Color::Yellow);
gradient2.addColor(DGtal::Color::Red);
viewer3 << DGtal::ClippingPlane(1,0,0,-10.1);
cpt=0;
for(Image::Domain::ConstIterator it = imageGranulo.domain().begin(),
itend = imageGranulo.domain().end(); it != itend;
++it)
if (imageGranulo(*it) > 0)
{
Image::Value val= imageGranulo( *it );
DGtal::Color c = gradient2(val);
viewer3 << DGtal::CustomColors3D(c,c) << *it ;
cpt++;
}
trace.info() << "Got "<<cpt<<" points."<<std::endl;
viewer3 << DGtal::Viewer3D<>::updateDisplay;
trace.info() << "viewer3 launched..."<<std::endl;
return res && application3.exec();
}
Structure representing an RGB triple with alpha component.
Definition: Color.h:68
static const Color Yellow
Definition: Color.h:422
static const Color Green
Definition: Color.h:417
static const Color Red
Definition: Color.h:416
static const Color Blue
Definition: Color.h:419
TImageContainer::Value Value
Definition: Image.h:84
static Self diagonal(Component val=1)
std::ostream & info()
MyDigitalSurface::ConstIterator ConstIterator
HyperRectDomain< Space > Domain
Definition: StdDefs.h:172
Space::RealPoint RealPoint
Definition: StdDefs.h:170
ExactPredicateLpSeparableMetric< Space, 2 > L2Metric
Definition: StdDefs.h:199
Space::Point Point
Definition: StdDefs.h:168
Point center(const std::vector< Point > &points)
DGtal is the top-level namespace which contains all DGtal functions and types.
Trace trace
Definition: Common.h:153
Class for adding a Clipping plane through the Viewer3D stream. Realizes the concept CDrawableWithView...
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())
int main(int argc, char **argv)
Image image(domain)
ImageContainerBySTLVector< Domain, Value > Image