$extrastylesheet
Olena  User documentation 2.1
An Image Processing Platform
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
trace.cc
1 #include <mln/core/image/image2d.hh>
2 #include <mln/value/label_8.hh>
3 #include <mln/labeling/blobs.hh>
4 #include <mln/core/alias/neighb2d.hh>
5 #include <mln/geom/bbox.hh>
6 
7 int main()
8 {
9  using namespace mln;
10  using namespace mln::value;
11 
12  image2d<bool> ima(200,300);
13  label_8 nlabels;
14  // \{
15  // ...
16  debug::trace::quiet = false;
17  // \}
18  debug::trace::quiet = true;
19  // \{
20  labeling::blobs(ima, c4(), nlabels);
21 
22  debug::trace::quiet = true;
23 
24  geom::bbox(ima);
25  // ...
26  // \}
27 }