Table of Contents

Method FastHoughTransform

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

FastHoughTransform(InputArray, OutputArray, MatType, AngleRangeOption, HoughOP, HoughDeskewOption)

Calculates 2D Fast Hough transform of an image.

public static void FastHoughTransform(InputArray src, OutputArray dst, MatType dstMatDepth, AngleRangeOption angleRange = AngleRangeOption.ARO_315_135, HoughOP op = HoughOP.FHT_ADD, HoughDeskewOption makeSkew = HoughDeskewOption.DESKEW)

Parameters

src InputArray

The source (input) image.

dst OutputArray

The destination image, result of transformation.

dstMatDepth MatType

The depth of destination image

angleRange AngleRangeOption

The part of Hough space to calculate, see cv::AngleRangeOption

op HoughOP

The operation to be applied, see cv::HoughOp

makeSkew HoughDeskewOption

Specifies to do or not to do image skewing, see cv::HoughDeskewOption