Click or drag to resize

CvXImgProcFastHoughTransform Method

Calculates 2D Fast Hough transform of an image.

Namespace:  OpenCvSharp.XImgProc
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
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
Type: OpenCvSharpInputArray
The source (input) image.
dst
Type: OpenCvSharpOutputArray
The destination image, result of transformation.
dstMatDepth
Type: OpenCvSharpMatType
The depth of destination image
angleRange (Optional)
Type: OpenCvSharp.XImgProcAngleRangeOption
The part of Hough space to calculate, see cv::AngleRangeOption
op (Optional)
Type: OpenCvSharp.XImgProcHoughOP
The operation to be applied, see cv::HoughOp
makeSkew (Optional)
Type: OpenCvSharp.XImgProcHoughDeskewOption
Specifies to do or not to do image skewing, see cv::HoughDeskewOption
See Also