A simple example illustrating the extraction of the sequence of surfels boudary. This program outputs this image.
#include <iostream>
#include "DGtal/base/Common.h"
#include "DGtal/helpers/StdDefs.h"
#include "DGtal/topology/KhalimskySpaceND.h"
#include "DGtal/topology/helpers/Surfaces.h"
#include "DGtal/io/viewers/Viewer3D.h"
#include "DGtal/io/readers/VolReader.h"
#include "DGtal/io/DrawWithDisplay3DModifier.h"
#include "DGtal/images/ImageSelector.h"
#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
#include "DGtal/io/Color.h"
#include "DGtal/io/colormaps/GradientColorMap.h"
#include "ConfigExamples.h"
int main(
int argc,
char** argv )
{
QApplication application(argc,argv);
typedef ImageSelector < Z3i::Domain, int>::Type
Image;
std::string inputFilename = examplesPath + "samples/cat10.vol";
bool space_ok = ks.
init( image.domain().lowerBound(), image.domain().upperBound(),
true );
if (!space_ok)
{
trace.
error() <<
"Error in the Khamisky space construction."<<std::endl;
return 2;
}
std::vector<Z3i::SCell> vectBdrySCell;
std::vector<Z3i::SCell> vectBdrySCell2;
std::set<Z3i::SCell> vectBdrySCellALL;
trace.
info() <<
"Tracking Boundary.."<<std::endl;
ks,SAdj, set3d, aCell );
ks, *(ks.
sDirs( aCell )), SAdj,
set3d, aCell );
ks, *(++(ks.
sDirs( aCell ))), SAdj,
set3d, aCell );
typedef Viewer3D <Z3i::Space,Z3i::KSpace> MyViewer;
MyViewer viewer(ks);
viewer.show();
trace.
info() <<
"Displaying the surfels.."<<std::endl;
viewer <<
SetMode3D((*(vectBdrySCellALL.begin())).className(),
"Transparent");
for( std::set<Z3i::SCell>::iterator it=vectBdrySCellALL.begin();
it!= vectBdrySCellALL.end(); it++){
viewer<< *it;
}
trace.
info()<<
"done"<<std::endl;
viewer << Viewer3D<Z3i::Space,Z3i::KSpace>::shiftSurfelVisu;
viewer <<
SetMode3D((*(vectBdrySCell2.begin())).className(),
"");
viewer.setFillColor(
Color(180, 200, 25, 255));
int d=0;
for( std::vector<Z3i::SCell>::iterator it=vectBdrySCell2.begin();
it!= vectBdrySCell2.end(); it++){
viewer<< *it;
d++;
}
viewer << Viewer3D<>::shiftSurfelVisu;
d=0;
for( std::vector<Z3i::SCell>::iterator it=vectBdrySCell.begin();
it!= vectBdrySCell.end(); it++){
Color col= cmap_grad2(d);
viewer<< *it;
d++;
}
viewer << MyViewer::shiftSurfelVisu;
viewer.setFillColor(
Color(18, 200, 25, 255));
viewer << aCell ;
viewer << MyViewer::updateDisplay;
return application.exec();
}
Structure representing an RGB triple with alpha component.
void green(const unsigned char aGreenValue)
void red(const unsigned char aRedValue)
void blue(const unsigned char aBlueValue)
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
Aim: This class template may be used to (linearly) convert scalar values in a given range into a colo...
void addColor(const Color &color)
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
DirIterator sDirs(const SCell &p) const
Given a signed cell [p], returns an iterator to iterate over each coordinate the cell spans.
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
void beginBlock(const std::string &keyword="")
DGtal is the top-level namespace which contains all DGtal functions and types.
Aim: Define utilities to convert a digital set into an image.
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.
Aim: implements methods to read a "Vol" file format.
ImageContainerBySTLVector< Domain, Value > Image