33 #include "DGtal/base/Common.h"
34 #include "ConfigTest.h"
35 #include "DGtal/helpers/StdDefs.h"
36 #include "DGtal/geometry/curves/FreemanChain.h"
37 #include "DGtal/topology/KhalimskySpaceND.h"
38 #include "DGtal/topology/helpers/Surfaces.h"
39 #include "DGtal/topology/SurfelSetPredicate.h"
40 #include "DGtal/shapes/Shapes.h"
41 #include "DGtal/io/boards/Board2D.h"
42 #include "DGtal/io/readers/VolReader.h"
43 #include "DGtal/base/ConstAlias.h"
44 #include "DGtal/images/ImageContainerBySTLMap.h"
48 using namespace DGtal;
63 unsigned int nbok = 0;
73 trace.
beginBlock (
"Testing computation of interior from a freeman chain ..." );
74 std::string freemanChainFilename = testPath +
"samples/contourS.fc";
75 std::string freemanChainFilename2 = testPath +
"samples/SmallBall.fc";
77 fst.open (freemanChainFilename.c_str(), ios::in);
80 fst.open (freemanChainFilename2.c_str(), ios::in);
83 std::set<SCell> boundaryCell;
84 std::set<SCell> boundaryCell2;
87 int minx, miny, maxx, maxy;
91 trace.
info() <<
"Domain defined by :" << dom.lowerBound() <<
" " << dom.upperBound() << std::endl;
92 K.
init(dom.lowerBound(), dom.upperBound(),
true);
93 Ko.
init(dom.lowerBound(), dom.upperBound(),
false);
96 BoolImage2D interiorImage(dom);
98 interiorImage, 1,
false);
99 trace.
info() <<
"Interior size: " << nbInt <<
" (awaited: 3082)" << std::endl;
101 BoolImage2D exteriorImage(dom);
103 exteriorImage, 1,
true);
105 exteriorImage, 1,
true);
106 trace.
info() <<
"Exterior size: (KhalimskySpaceND open) " << nbExto <<
" (awaited: 9182)" << std::endl;
107 trace.
info() <<
"Exterior size: (KhalimskySpaceND close)" << nbExt <<
" (awaited: 9182)" << std::endl;
111 int minx2, miny2, maxx2, maxy2;
114 K2.
init(dom2.lowerBound(), dom2.upperBound(),
false);
115 K2c.
init(dom2.lowerBound(), dom2.upperBound(),
true);
118 BoolImage2D interiorImage2(dom2);
120 interiorImage2, 1,
false);
121 trace.
info() <<
"Interior size2: (KhalimskySpaceND open) " << nbInt2 <<
" (awaited: 196316)" << std::endl;
123 interiorImage2, 1,
false);
124 trace.
info() <<
"Interior size2: (KhalimskySpaceND closed) " << nbInt2c <<
" (awaited: 196316)" << std::endl;
127 Board2D aBoard, aBoard2, aBoard3;
130 if(interiorImage(*it)){
136 if(exteriorImage(*it)){
142 if(interiorImage2(*it)){
147 aBoard<<
CustomStyle( (*(boundaryCell.begin())).className(),
149 aBoard3<<
CustomStyle( (*(boundaryCell.begin())).className(),
151 aBoard2<<
CustomStyle( (*(boundaryCell.begin())).className(),
153 for( std::set<SCell>::const_iterator it= boundaryCell.begin(); it!= boundaryCell.end(); it++){
158 for( std::set<SCell>::const_iterator it= boundaryCell2.begin(); it!= boundaryCell2.end(); it++){
175 aBoard.
saveEPS(
"testSurfaceHelperComputeInterior.eps");
176 aBoard3.
saveEPS(
"testSurfaceHelperComputeExterior.eps");
177 aBoard2.
saveEPS(
"testSurfaceHelperComputeInterior2.eps");
178 nbok += (nbInt == 3082 && nbInt2 == 196316 && nbInt2c == 196316 && nbExt== 9182 && nbExto== 9182)? 1 : 0;
180 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
181 << nbInt <<
" (interiorCell.size()) == 3014 and "
182 << nbInt2 <<
" (interiorCell2.size()) == 60196 "
194 unsigned int nbok = 0;
197 trace.
beginBlock (
"Testing extraction of 3D connected component ..." );
201 Set aSet(image.domain());
202 for(
auto const &p: image.domain())
210 Kc.
init(image.domain().lowerBound(),
211 image.domain().upperBound(),
true);
213 std::vector<std::vector<DGtal::Z3i::SCell> > vectConnectedSCell;
216 nbok += vectConnectedSCell.size()==1;
217 trace.
info() <<
"Connected component :" << vectConnectedSCell.size() <<
" (should be 1) " << std::endl;
220 trace.
beginBlock(
"Test 3D filling interior of surface (in an closed KhalimskySpaceND ) ...");
221 Image3dChar imageFilled(image.domain());
222 std::set<Z3i::SCell> setSCell;
for (
auto const &s: vectConnectedSCell[0]) setSCell.insert(s);
226 trace.
info() <<
"Nb voxel filled:" << nbFilled <<
" (should be " << aSet.size() <<
" )" << std::endl;
228 nbok += nbFilled == aSet.size();
232 trace.
beginBlock(
"Test 3D filling interior of surface (in an open KhalimskySpaceND ) ...");
234 ko.
init(image.domain().lowerBound(),
235 image.domain().upperBound(),
false);
237 trace.
info() <<
"Nb voxel filled:" << nbFilled2 <<
" (should be " << aSet.size() <<
" )" << std::endl;
239 nbok += nbFilled2 == aSet.size();
243 trace.
beginBlock(
"Test 3D filling exterior of surface (in an closed KhalimskySpaceND ) ...");
245 trace.
info() <<
"Nb voxel filled:" << nbFilled3 <<
" (should be " << aSet.size() <<
" )" << std::endl;
247 nbok += nbFilled3 == imageFilled.size()-aSet.size();
252 trace.
beginBlock(
"Test 3D filling exterior of surface (in an open KhalimskySpaceND ) ...");
254 trace.
info() <<
"Nb voxel filled:" << nbFilled4 <<
" (should be " << aSet.size() <<
" )" << std::endl;
256 nbok += nbFilled4 == imageFilled.size()-aSet.size();
271 template <
typename KSpace3D>
280 unsigned int nbok = 0;
284 Point p1( -5, -5, -5 );
288 pts[ 2 ] =
Point( 5, -5, -5 );
289 pts[ 3 ] =
Point( -5, 5, -5 );
290 pts[ 4 ] =
Point( 5, 5, -5 );
291 pts[ 5 ] =
Point( -5, -5, 5 );
292 pts[ 6 ] =
Point( 5, -5, 5 );
293 pts[ 7 ] =
Point( -5, 5, 5 );
298 for (
unsigned int i = 0; i < 8; ++i )
301 trace.
info() <<
"- Exterior point is " << pts[ i ] << std::endl;
302 trace.
info() <<
" - Found bel = " << bel << std::endl;
303 ++nb; nbok +=
K.
sDim( bel ) == 2;
304 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
305 <<
" K.sDim( bel ) == " <<
K.
sDim( bel ) <<
" (should be 2)" << std::endl;
308 ++nb; nbok += aSet(
K.
sCoords( vox_in ) ) ? 1 : 0;
309 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
310 <<
" vox_in should be inside the shape." << std::endl;
311 ++nb; nbok += aSet(
K.
sCoords( vox_out ) ) ? 0 : 1;
312 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
313 <<
" vox_out should be outside the shape." << std::endl;
322 int main(
int argc,
char** argv )
326 for (
int i = 0; i < argc; ++i )
332 trace.
emphase() << ( res ?
"Passed." :
"Error." ) << endl;
Aim: This class specializes a 'Board' class so as to display DGtal objects more naturally (with <<)....
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
Aim: A container class for storing sets of digital points within some given domain.
void computeBoundingBox(TInteger &min_x, TInteger &min_y, TInteger &max_x, TInteger &max_y) const
std::string className() const
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.
SCell sIndirectIncident(const SCell &p, Dimension k) const
Return the indirect incident cell of [p] along [k] (the incident cell along [k] whose sign is negativ...
Dimension sOrthDir(const SCell &s) const
Given a signed surfel [s], returns its orthogonal direction (ie, the coordinate where the surfel is c...
Point sCoords(const SCell &c) const
Return its digital coordinates.
SCell sDirectIncident(const SCell &p, Dimension k) const
Return the direct incident cell of [p] along [k] (the incident cell along [k])
Dimension sDim(const SCell &p) const
Return the dimension of the cell [p].
Aim: A utility class for constructing different shapes (balls, diamonds, and others).
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
unsigned static int uFillInterior(const KSpace &aKSpace, const TSurfelPredicate &aSurfPred, TImageContainer &anImage, const typename TImageContainer::Value &aValue, bool empty_is_inside=false, bool incrementMode=true)
unsigned static int uFillExterior(const KSpace &aKSpace, const SurfelPredicate &aSurfPred, TImageContainer &anImage, const typename TImageContainer::Value &aValue, bool empty_is_outside=true, bool incrementMode=true)
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
void beginBlock(const std::string &keyword="")
void saveEPS(const char *filename, PageSize size=Board::BoundingBox, double margin=10.0) const
MyDigitalSurface::ConstIterator ConstIterator
functors namespace gathers all DGtal functors.
DGtal is the top-level namespace which contains all DGtal functions and types.
Custom style class redefining the pen color and the fill color. You may use Board2D::Color::None for ...
Modifier class in a Board2D 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.
Aim: The predicate returning true iff the point is in the domain given at construction.
HyperRectDomain< Space > Domain
int main(int argc, char **argv)
bool test3dSurfaceHelper()
bool testComputeInterior()
Z2i::DigitalSet DigitalSet