GapInfo.hpp
1 #ifndef OPALS_GAP_INFO_HPP_INCLUDED
2 #define OPALS_GAP_INFO_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Write additional gap information to files
9  namespace GapInfo
10  {
11  enum Type
12  {
13  BoundaryMask , ///< Write file with boundary pixels of individual gaps
14  BoundaryValues , ///< Write file with boundary pixels showing their actual value
15  MBR , ///< Write minimum bounding rectangles of individual gaps
16  VoidMask , ///< Write file with void pixels of individual gaps
17  Count ///< number of elements
18  };
19  }
20 }
21 
22 #endif