Skip to content

CalibrateRobertson

Computational photographyclassOpenCV 5.0.0
import { CalibrateRobertson } from '@banou/opencv-wasm'

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

ARGUMENTSConstructor or factory
CLASSCalibrateRobertson
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. Inherits CalibrateCRF.

Inverse camera response function is extracted for each brightness value by minimizing an objective function as linear system. This algorithm uses all image pixels.

For more information see [RB99] .

Constructors and members

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.

getMaxIter

Return the max iter configured on this CalibrateRobertson object.

getMaxIter(): number;
Returns

The number result.

setMaxIter

Set the max iter used by this CalibrateRobertson object.

setMaxIter(max_iter: number): void;
max_iter

max iter argument (number).

getThreshold

Return the threshold configured on this CalibrateRobertson object.

getThreshold(): number;
Returns

The number result.

setThreshold

Set the threshold used by this CalibrateRobertson object.

setThreshold(threshold: number): void;
threshold

threshold argument (number).

getRadiance

Return the radiance configured on this CalibrateRobertson object.

getRadiance(): Mat;
Returns

The Mat result. Release returned native handles with using or delete(), including handles nested in results.

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.