| HoughOP Enumeration |
Specifies binary operations.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration HoughOP
public enum class HoughOP
Members
| Member name | Value | Description |
---|
| FHT_MIN | 0 |
Binary 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]
|
| FHT_MAX | 1 |
Binary 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_ADD | 2 |
Binary 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 | 3 |
Binary 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]
|
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]
See Also