Skip to content

aruco_CharucoParameters

objdetectclassOpenCV 5.0.0
import { aruco_CharucoParameters } from '@banou/opencv-wasm'

Use after await initOpenCV(). See the initialization and named imports guide.

ARGUMENTSConstructor or factory
CLASSaruco_CharucoParameters
RETURN TYPEOwned native handle
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

Native object: release it with using or delete(). Factories can return null; check before calling methods.

aruco charuco parameters value in the OpenCV API.

Constructors and members

static new

Create an owned aruco_CharucoParameters object. Release native handles with using or delete().

new(): aruco_CharucoParameters;
Returns

The aruco_CharucoParameters result.

clone

Create another handle to the same native object. This retains the object without copying its pixels or algorithm state; dispose both handles separately.

clone(): this;
Returns

The this result.

cameraMatrix

cameraMatrix optional 3x3 floating-point camera matrix

cameraMatrix: Mat;

distCoeffs

distCoeffs optional vector of distortion coefficients

distCoeffs: Mat;

minMarkers

minMarkers number of adjacent markers that must be detected to return a charuco corner, default = 2

minMarkers: number;

tryRefineMarkers

try to use refine board, default false

tryRefineMarkers: boolean;

checkMarkers

run check to verify that markers belong to the same board, default true

checkMarkers: 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.