EdgeDetector.hpp
1 #ifndef OPALS_EDGE_DETECTOR_HPP_INCLUDED
2 #define OPALS_EDGE_DETECTOR_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator for edge detection algorithm used in \ref ModuleEdgeDetect
9  namespace EdgeDetector
10  {
11  enum Type
12  {
13  Canny , ///< Canny Edge Detector
14  Count ///< number of elements
15  };
16  }
17 }
18 
19 #endif