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
- Jacques-Olivier Lachaud (
jacqu.nosp@m.es-o.nosp@m.livie.nosp@m.r.la.nosp@m.chaud.nosp@m.@uni.nosp@m.v-sav.nosp@m.oie..nosp@m.fr
) Laboratory of Mathematics (CNRS, UMR 5127), University of Savoie, France
- Date
- 2011/09/01
Functions for testing class DigitalSurface.
This file is part of the DGtal library.
Definition in file testDigitalSurface.cpp.
bool testDigitalSetBoundary |
( |
| ) |
|
Example of a test. To be completed.
Definition at line 61 of file testDigitalSurface.cpp.
63 unsigned int nbok = 0;
70 typedef Boundary::Tracker Tracker;
81 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
82 <<
"K.init() is ok" << std::endl;
83 Boundary boundary(
K, dig_set );
84 unsigned int nbsurfels = 0;
85 for (
ConstIterator it = boundary.begin(), it_end = boundary.end();
90 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
91 ++nb; nbok += nbsurfels == ( 12 + 44 ) ? 1 : 0;
92 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
93 <<
"nbsurfels == (12 + 44 )" << std::endl;
94 for (
ConstIterator it = boundary.begin(), it_end = boundary.end();
97 Tracker* ptrTracker = boundary.newTracker( *it );
98 Surfel s = ptrTracker->current();
101 unsigned int m1 = ptrTracker->adjacent( s1, trackDir,
true );
102 unsigned int m2 = ptrTracker->adjacent( s2, trackDir,
false );
103 trace.
info() <<
"s = " << s << std::endl;
104 trace.
info() <<
"s1 = " << s1 <<
" m1 = " << m1 << std::endl;
105 trace.
info() <<
"s2 = " << s2 <<
" m2 = " << m2 << std::endl;
106 ++nb; nbok += boundary.isInside( s1 ) ? 1 : 0;
107 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
108 <<
"boundary.isInside( s1 )" << std::endl;
109 ++nb; nbok += boundary.isInside( s2 ) ? 1 : 0;
110 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
111 <<
"boundary.isInside( s2 )" << std::endl;
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as the boundary of a given...
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
const Point & lowerBound() const
const Point & upperBound() const
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 different shapes (balls, diamonds, and others).
MyDigitalSurface::ConstIterator ConstIterator
DGtal::uint32_t Dimension
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
References DGtal::Trace::beginBlock(), domain, DGtal::Trace::endBlock(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), K, DGtal::HyperRectDomain< TSpace >::lowerBound(), DGtal::KhalimskySpaceND< dim, TInteger >::sDirs(), DGtal::trace, and DGtal::HyperRectDomain< TSpace >::upperBound().
Referenced by main().
template<typename KSpace >
bool testDigitalSurface |
( |
| ) |
|
Definition at line 489 of file testDigitalSurface.cpp.
491 unsigned int nbok = 0;
493 std::string msg(
"Testing block ... DigitalSurface in K" );
494 msg +=
'0' + KSpace::dimension;
504 Point p0 = Point::diagonal( 0 );
505 Point p1 = Point::diagonal( -6 );
506 Point p2 = Point::diagonal( 6 );
514 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
515 <<
"K.init() is ok" << std::endl;
529 DSContainer* ptrBdry =
new DSContainer(
K, dig_set );
530 MyDS digsurf( ptrBdry );
536 ++nb; nbok += digsurf.size() == nbsurfels ? 1 : 0;
537 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
538 <<
"digsurf.size() = " << digsurf.size()
539 <<
" == " << nbsurfels << std::endl;
541 it_end = digsurf.end();
546 ++nb; nbok += digsurf.degree( s ) == 2*(
K.
dimension-1) ? 1 : 0;
548 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
549 <<
"digsurf.degree( s ) == "
556 unsigned int nb_dist_1 = 0;
558 while ( ! visitor.finished() )
560 node = visitor.current();
561 if ( node.second == 1 ) ++nb_dist_1;
564 trace.
info() <<
"last node v=" << node.first <<
" d=" << node.second << std::endl;
565 ++nb; nbok += nb_dist_1 == 2*(
K.
dimension-1) ? 1 : 0;
566 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
567 <<
"nb surfels at distance 1 == "
569 const BFVMarkSet & visitedVtx = visitor.markedVertices();
570 Size nbsurfelsComp1 =
574 ++nb; nbok += visitedVtx.size() == nbsurfelsComp1 ? 1 : 0;
575 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
576 <<
"nb visited = " << visitedVtx.size() <<
" == "
577 << nbsurfelsComp1 << std::endl;
Aim: This class is useful to perform a breadth-first exploration of a graph given a starting point or...
std::pair< Vertex, Data > Node
FIXME.
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
static constexpr const Dimension dimension
NumberTraits< Integer >::UnsignedVersion Size
Type used to represent sizes in the digital space.
Aim: Defines the concept describing a const single pass range.
Aim: Represents the concept of local graph: each vertex has neighboring vertices, but we do not neces...
Aim: Represents the concept of local graph: each vertex has neighboring vertices, but we do not neces...
HalfEdgeDataStructure::Size Size
HyperRectDomain< Space > Domain
Z2i::DigitalSet DigitalSet
References DGtal::Trace::beginBlock(), DGtal::BreadthFirstVisitor< TGraph, TMarkSet >::current(), DGtal::KhalimskySpaceND< dim, TInteger >::dimension, domain, DGtal::Trace::endBlock(), DGtal::BreadthFirstVisitor< TGraph, TMarkSet >::expand(), DGtal::BreadthFirstVisitor< TGraph, TMarkSet >::finished(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), K, DGtal::HyperRectDomain< TSpace >::lowerBound(), DGtal::BreadthFirstVisitor< TGraph, TMarkSet >::markedVertices(), DGtal::trace, and DGtal::HyperRectDomain< TSpace >::upperBound().
Referenced by main().
bool testExplicitDigitalSurface |
( |
| ) |
|
Definition at line 273 of file testDigitalSurface.cpp.
281 unsigned int nbok = 0;
284 Point p1( -5, -5, -5 );
287 nbok +=
K.
init( p1, p2,
true ) ? 1 : 0;
289 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
290 <<
"K.init() is ok" << std::endl;
299 SurfelPredicate surfPredicate(
K, image, 2, 0 );
300 Frontier frontier20(
K, surfPredicate,
303 unsigned int nbsurfels = 0;
304 for (
ConstIterator it = frontier20.begin(), it_end = frontier20.end();
309 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
310 ++nb; nbok += nbsurfels == 9 ? 1 : 0;
311 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
312 <<
"frontier20: nbsurfels == 9" << std::endl;
317 SurfelPredicate surfPredicate(
K, image, 1, 0 );
318 Frontier frontier10(
K, surfPredicate,
321 unsigned int nbsurfels = 0;
322 for (
ConstIterator it = frontier10.begin(), it_end = frontier10.end();
327 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
328 ++nb; nbok += nbsurfels == 140 ? 1 : 0;
329 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
330 <<
"frontier10: nbsurfels == 140" << std::endl;
335 SurfelPredicate surfPredicate(
K, image, 1, 2 );
336 Frontier frontier12(
K, surfPredicate,
339 unsigned int nbsurfels = 0;
340 for (
ConstIterator it = frontier12.begin(), it_end = frontier12.end();
345 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
346 ++nb; nbok += nbsurfels == 36 ? 1 : 0;
347 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
348 <<
"frontier12: nbsurfels == 36" << std::endl;
353 typedef Boundary::SurfelConstIterator EConstIterator;
359 SecondSurfelPredicate surfPredicate(
K, image, 1 );
360 Boundary boundary1x(
K, surfPredicate,
363 unsigned int nbsurfels = 0;
364 for ( EConstIterator it = boundary1x.begin(), it_end = boundary1x.end();
369 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
370 ++nb; nbok += nbsurfels == 176 ? 1 : 0;
371 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
372 <<
"boundary1x: nbsurfels == 176" << std::endl;
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as connected surfels....
Aim: implements association bewteen points lying in a digital domain and values.
static constexpr const Sign POS
SCell sSpel(Point p, Sign sign=POS) const
From the digital coordinates of a point in Zn, builds the corresponding spel (cell of maximal dimensi...
SCell sIncident(const SCell &c, Dimension k, bool up) const
Return the forward or backward signed cell incident to [c] along axis [k], depending on [up].
Aim: The predicate on surfels that represents the frontier between a region and its complementary in ...
Aim: The predicate on surfels that represents the frontier between two regions in an image....
void fillImage3D(Image3D &img, typename Image3D::Point low, typename Image3D::Point up, typename Image3D::Value value)
ImageContainerBySTLVector< Domain, Value > Image
References DGtal::Trace::beginBlock(), DGtal::Trace::endBlock(), fillImage3D(), image(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), K, DGtal::KhalimskySpaceND< dim, TInteger >::POS, DGtal::KhalimskySpaceND< dim, TInteger >::sIncident(), DGtal::KhalimskySpaceND< dim, TInteger >::sSpel(), and DGtal::trace.
Referenced by main().
bool testLightExplicitDigitalSurface |
( |
| ) |
|
Definition at line 381 of file testDigitalSurface.cpp.
389 unsigned int nbok = 0;
392 Point p1( -5, -5, -5 );
395 nbok +=
K.
init( p1, p2,
true ) ? 1 : 0;
397 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
398 <<
"K.init() is ok" << std::endl;
407 SurfelPredicate surfPredicate(
K, image, 2, 0 );
408 Frontier frontier20(
K, surfPredicate,
411 unsigned int nbsurfels = 0;
412 for (
ConstIterator it = frontier20.begin(), it_end = frontier20.end();
417 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
418 ++nb; nbok += nbsurfels == 9 ? 1 : 0;
419 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
420 <<
"frontier20: nbsurfels == 9" << std::endl;
425 SurfelPredicate surfPredicate(
K, image, 1, 0 );
426 Frontier frontier10(
K, surfPredicate,
429 unsigned int nbsurfels = 0;
430 for (
ConstIterator it = frontier10.begin(), it_end = frontier10.end();
435 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
436 ++nb; nbok += nbsurfels == 140 ? 1 : 0;
437 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
438 <<
"frontier10: nbsurfels == 140" << std::endl;
443 SurfelPredicate surfPredicate(
K, image, 1, 2 );
444 Frontier frontier12(
K, surfPredicate,
447 unsigned int nbsurfels = 0;
448 for (
ConstIterator it = frontier12.begin(), it_end = frontier12.end();
453 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
454 ++nb; nbok += nbsurfels == 36 ? 1 : 0;
455 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
456 <<
"frontier12: nbsurfels == 36" << std::endl;
461 typedef Boundary::SurfelConstIterator LEConstIterator;
467 SecondSurfelPredicate surfPredicate(
K, image, 1 );
468 Boundary boundary1x(
K, surfPredicate,
471 unsigned int nbsurfels = 0;
472 for ( LEConstIterator it = boundary1x.begin(), it_end = boundary1x.end();
477 trace.
info() << nbsurfels <<
" surfels found." << std::endl;
478 ++nb; nbok += nbsurfels == 176 ? 1 : 0;
479 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
480 <<
"boundary1x: nbsurfels == 176" << std::endl;
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as connected surfels....
References DGtal::Trace::beginBlock(), DGtal::Trace::endBlock(), fillImage3D(), image(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), K, DGtal::KhalimskySpaceND< dim, TInteger >::POS, DGtal::KhalimskySpaceND< dim, TInteger >::sIncident(), DGtal::KhalimskySpaceND< dim, TInteger >::sSpel(), and DGtal::trace.
Referenced by main().
bool testOrderingDigitalSurfaceFacesAroundVertex |
( |
| ) |
|
Definition at line 586 of file testDigitalSurface.cpp.
599 unsigned int nbok = 0;
603 Point pt1 = Point::diagonal( -1 );
604 Point pt2 = Point::diagonal( 1 );
607 dig_set.insert( pt0 );
611 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
612 <<
"K.init() is ok" << std::endl;
613 DSContainer* ptrBdry =
new DSContainer(
K, dig_set );
614 MyDS digsurf( ptrBdry );
615 ++nb; nbok += digsurf.size() == 6 ? 1 : 0;
616 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
617 <<
"digsurf.size() = " << digsurf.size()
618 <<
" == " << 6 << std::endl;
621 std::map< std::pair< SCell, SCell >,
unsigned int > nb_arcs;
622 for (
Vertex v : digsurf )
624 auto faces = digsurf.facesAroundVertex( v,
true );
625 for (
unsigned int i = 0; i < faces.size(); ++i )
627 auto p = std::make_pair( digsurf.pivot( faces[ i ] ),
628 digsurf.pivot( faces[ (i+1)%4 ] ) );
629 trace.
info() <<
"Arc " << p.first <<
" --- " << p.second << std::endl;
630 if ( nb_arcs.find( p ) == nb_arcs.end() )
636 ++nb; nbok += nb_arcs.size() == 24 ? 1 : 0;
637 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
638 <<
"nb_arcs.size() = " << nb_arcs.size()
639 <<
" == " << 24 <<
" (cube has 24 arcs)" << std::endl;
640 for (
auto arc : nb_arcs )
642 SCell p1 = arc.first.first;
643 SCell p2 = arc.first.second;
646 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
647 <<
"arcs have all norm 1." << std::endl;
648 for (
auto arc : nb_arcs )
650 SCell p1 = arc.first.first;
651 SCell p2 = arc.first.second;
652 auto it = nb_arcs.find( std::make_pair( p2, p1 ) );
653 ++nb; nbok += arc.second == 1 ? 1 : 0;
654 ++nb; nbok += ( it != nb_arcs.end() ) && it->second == 1 ? 1 : 0;
656 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") "
657 <<
"arcs are unique and their inverse are unique." << std::endl;
Point sCoords(const SCell &c) const
Return its digital coordinates.
References DGtal::Trace::beginBlock(), domain, DGtal::Trace::endBlock(), DGtal::Trace::info(), DGtal::KhalimskySpaceND< dim, TInteger >::init(), DGtal::DigitalSetByAssociativeContainer< TDomain, TContainer >::insert(), K, DGtal::HyperRectDomain< TSpace >::lowerBound(), DGtal::KhalimskySpaceND< dim, TInteger >::sCoords(), DGtal::trace, and DGtal::HyperRectDomain< TSpace >::upperBound().
Referenced by main().