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
srcInputArrayThe source (input) image.
dstOutputArrayThe destination image, result of transformation.
dstMatDepthMatTypeThe depth of destination image
angleRangeAngleRangeOptionThe part of Hough space to calculate, see cv::AngleRangeOption
opHoughOPThe operation to be applied, see cv::HoughOp
makeSkewHoughDeskewOptionSpecifies to do or not to do image skewing, see cv::HoughDeskewOption