ximgproc_FastHoughTransform
import { ximgproc_FastHoughTransform } from '@banou/opencv-wasm'Use after await initOpenCV(). See the initialization and named imports guide.
ARGUMENTSsrc, dst, dstMatDepth, angleRange
FUNCTIONximgproc_FastHoughTransform
RETURN TYPEvoid
Calculates 2D Fast Hough transform of an image.
ximgproc_FastHoughTransform(src: Mat, dst: Mat, dstMatDepth: number, angleRange: number, op: number, makeSkew: number): void;4 available overloads
ximgproc_FastHoughTransform(src: Mat, dst: Mat, dstMatDepth: number): void;ximgproc_FastHoughTransform(src: Mat, dst: Mat, dstMatDepth: number, angleRange: number): void;ximgproc_FastHoughTransform(src: Mat, dst: Mat, dstMatDepth: number, angleRange: number, op: number): void;ximgproc_FastHoughTransform(src: Mat, dst: Mat, dstMatDepth: number, angleRange: number, op: number, makeSkew: number): void;srcThe source (input) image.
dstOutput destination, filled by the native operation. The destination image, result of transformation.
dstMatDepthThe depth of destination image
angleRangeThe part of Hough space to calculate, see cv::AngleRangeOption
opThe operation to be applied, see cv::HoughOp
makeSkewSpecifies to do or not to do image skewing, see cv::HoughDeskewOption
The function calculates the fast Hough transform for full, half or quarter range of angles.
These signatures describe this package. Upstream documentation can mention optional backends that are absent from this build. Check runtime compatibility before choosing a backend or file format.