$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
domain-display.cc
1 #include <mln/core/image/image2d.hh>
2 int main()
3 {
4  using namespace mln;
5 
6  // \{
7  image2d<int> ima1(5, 5);
8  image2d<int> ima2(10, 10);
9 
10  std::cout << "ima1.domain() = " << ima1.domain()
11  << std::endl;
12  std::cout << "ima2.domain() = " << ima2.domain()
13  << std::endl;
14  // \}
15 }