DGtal 1.3.0
Loading...
Searching...
No Matches
3dBorderExtractionImg.cpp
Go to the documentation of this file.
1
44#include <iostream>
45
46#include "DGtal/base/Common.h"
47
48#include "DGtal/base/Common.h"
49#include "DGtal/io/readers/VolReader.h"
50#include "DGtal/images/ImageSelector.h"
51#include "DGtal/images/imagesSetsUtils/SetFromImage.h"
52#include "DGtal/io/viewers/Viewer3D.h"
53
54#include "DGtal/helpers/StdDefs.h"
55#include "ConfigExamples.h"
56
57
59
60using namespace std;
61using namespace DGtal;
62
64
65int main( int argc, char** argv )
66{
67
68 std::string inputFilename = examplesPath + "samples/Al.100.vol";
69 QApplication application(argc,argv);
70 Viewer3D<> viewer;
71 viewer.show();
72
74 Image image = VolReader<Image>::importVol(inputFilename);
75 Z3i::DigitalSet set3d (image.domain());
77 Z3i::Object18_6 obj3d (Z3i::dt18_6, set3d);
78 Z3i::Object18_6 border = obj3d.border();
79 viewer << border;
80 viewer << ClippingPlane(0,1,0, -40) << Viewer3D<>::updateDisplay;
81
82 return application.exec();
83}
84// //
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
Aim: implements association bewteen points lying in a digital domain and values.
Definition: Image.h:70
Aim: An object (or digital object) represents a set in some digital space associated with a digital t...
Definition: Object.h:120
Object border() const
virtual void show()
Overload QWidget method in order to add a call to updateList() method (to ensure that the lists are w...
static const DT18_6 dt18_6
Definition: StdDefs.h:195
DGtal is the top-level namespace which contains all DGtal functions and types.
STL namespace.
Class for adding a Clipping plane through the Viewer3D stream. Realizes the concept CDrawableWithView...
ImageContainerBySTLVector< Domain, Value > Type
Definition: ImageSelector.h:78
Aim: Define utilities to convert a digital set into an image.
Definition: SetFromImage.h:64
static ImageContainer importVol(const std::string &filename, const Functor &aFunctor=Functor())
int main()
Definition: testBits.cpp:56