Main Page
Module List
Reference documentation
Namespaces
Classes
Examples
distro
c++_api
inc
opals
MorphOperation.hpp
1
#ifndef OPALS_MORPH_OPERATION_HPP_INCLUDED
2
#define OPALS_MORPH_OPERATION_HPP_INCLUDED
3
4
#include <opals/config.hpp>
5
6
namespace
opals
7
{
8
/// TODO: Enumerator for what?
9
namespace
MorphOperation
10
{
11
enum
Type
12
{
13
erode
,
///< morphological erosion filter
14
dilate
,
///< morphological dilation filter
15
open
,
///< morphological opening filter
16
close
,
///< morphological closing filter
17
Count
///< number of elements
18
};
19
}
20
}
21
22
#endif