$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
estim-sites.cc
1 #include <mln/core/image/image2d.hh>
2 #include <mln/geom/nsites.hh>
3 int main()
4 {
5  using namespace mln;
6 
7  image2d<int> ima(2, 3);
8 
9  // \{
10  unsigned nsites = geom::nsites(ima);
11  // \}
12 
13  (void) nsites;
14 }