Enum HoughOP
- Namespace
- OpenCvSharp.XImgProc
- Assembly
- OpenCvSharp.dll
Specifies binary operations.
public enum HoughOP
Fields
FHT_ADD = 2Binary addition operation. The constant specifies the binary addition operation @f$ f @f$ that is defined as follows: @f[ f(x, y) = x + y @f]
FHT_AVE = 3Binary average operation. The constant specifies the binary average operation @f$ f @f$ that is defined as follows: @f[ f(x, y) = \frac{x + y}{2} @f]
FHT_MAX = 1Binary maximum operation. The constant specifies the binary maximum operation @f$ f @f$ that is defined as follows: @f[ f(x, y) = \max(x, y) @f]
FHT_MIN = 0Binary minimum operation. The constant specifies the binary minimum operation @f$ f @f$ that is defined as follows: @f[ f(x, y) = \min(x, y) @f]
Remarks
The enum specifies binary operations, that is such ones which involve two operands. Formally, a binary operation @f$ f @f$ on a set @f$ S @f$ is a binary relation that maps elements of the Cartesian product @f$ S \times S @f$ to @f$ S @f$: @f[ f: S \times S \to S @f]