Click or drag to resize

HoughOP Enumeration

Specifies binary operations.

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum HoughOP
Members
  Member nameValueDescription
FHT_MIN0 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_MAX1 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_ADD2 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_AVE3 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