$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ima2d-2.cc
1 #include <mln/core/image/image2d.hh>
2 #include <mln/value/int_u8.hh>
3 int main()
4 {
5  using namespace mln;
6 
7  // \{
8  // Build an empty image;
10 
11  // Build an image with 2 rows
12  // and 3 columns sites
13  image2d<value::int_u8> img1b(box2d(2, 3));
14  image2d<value::int_u8> img1c(2, 3);
15  // \}
16 }