HoughLinesWithAccumulator
import { HoughLinesWithAccumulator } from '@banou/opencv-wasm'Use after await initOpenCV(). See the initialization and named imports guide.
Finds lines in a binary image using the standard Hough transform and get accumulator.
Note: This function is for bindings use only. Use original function in C++ code
See: HoughLines
HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number, stn: number, min_theta: number, max_theta: number, use_edgeval: boolean): void;6 available overloads
HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number): void;HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number): void;HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number, stn: number): void;HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number, stn: number, min_theta: number): void;HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number, stn: number, min_theta: number, max_theta: number): void;HoughLinesWithAccumulator(image: Mat, lines: Mat, rho: number, theta: number, threshold: number, srn: number, stn: number, min_theta: number, max_theta: number, use_edgeval: boolean): void;imageimage argument (Mat).
linesOutput destination, filled by the native operation. lines argument (Mat).
rhorho argument (number).
thetatheta argument (number).
thresholdthreshold argument (number).
srnsrn argument (number).
stnstn argument (number).
min_thetamin theta argument (number).
max_thetamax theta argument (number).
use_edgevaluse edgeval argument (boolean).
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.