Computes the number of lattice points within random polytopes in two different ways: (1) by simple range scanning and inside test, (2) by computing intersections along an axis.
Second method is much faster (from 5x to easily 100x).
# 1000 polytopes made from 10 points in range [-200:200]^2
./examples/geometry/volumes/exampleBoundedLatticePolytopeCount2D 1000 10 200
outputs
New Block [Compute 2D polytopes]
EndBlock [Compute 2D polytopes] (94.2541 ms)
Computed 1000 2D polytopes with 9.943 facets on average, in 94.2541 ms.
New Block [Compute number of lattice points within polytope (slow)]
EndBlock [Compute number of lattice points within polytope (slow)] (1561.86 ms)
New Block [Compute number of lattice points within polytope (fast)]
EndBlock [Compute number of lattice points within polytope (fast)] (21.061 ms)
Computed inside points is OK
Reference method computed 69858591 points in 1561.86 ms.
Fast method computed 69858591 points in 21.061 ms.
#include "DGtal/base/Common.h"
#include "DGtal/geometry/volumes/ConvexityHelper.h"
#include "DGtal/geometry/volumes/BoundedLatticePolytope.h"
int main(
int argc,
char* argv[] )
{
int N = argc > 1 ? atoi( argv[ 1 ] ) : 1000;
int nb = argc > 2 ? atoi( argv[ 2 ] ) : 10;
int R = argc > 3 ? atoi( argv[ 3 ] ) : 200;
typedef Helper::LatticePolytope Polytope;
std::vector< Polytope > polytopes;
int sum_nb_facets = 0;
for ( int i = 0; i < N; i++ )
{
std::vector< Point > V;
for ( int i = 0; i < nb; i++ ) {
Point p( rand() % (2*R+1) - R, rand() % (2*R+1) - R );
V.push_back( p );
}
Polytope P = Helper::computeLatticePolytope( V );
sum_nb_facets += P.nbHalfSpaces();
polytopes.push_back( P );
}
<< " 2D polytopes with " << ( sum_nb_facets / (double) N )
<< " facets on average, in " << t1 << " ms." << std::endl;
std::size_t slow_nb = 0;
std::vector< Integer > slow_counts;
for ( const auto& P : polytopes )
{
const auto nb = P.countByScanning();
slow_nb += nb;
slow_counts.push_back( nb );
}
std::size_t fast_nb = 0;
std::vector< Integer > fast_counts;
for ( const auto& P : polytopes )
{
const auto nb = P.count();
fast_nb += nb;
fast_counts.push_back( nb );
}
bool ok = std::equal( slow_counts.cbegin(), slow_counts.cend(), fast_counts.cbegin() );
DGtal::trace.
info() <<
"Computed inside points is " << ( ok ?
"OK" :
"ERROR" ) << std::endl;
<< " points in " << t2 << " ms." << std::endl;
<< " points in " << t3 << " ms." << std::endl;
return 0;
}
void beginBlock(const std::string &keyword="")
Point::Coordinate Integer
boost::int64_t int64_t
signed 94-bit integer.
Aim: Provides a set of functions to facilitate the computation of convex hulls and polytopes,...
int main(int argc, char **argv)