You are here: Start » AVL.NET » Invoke.DetectCalibrationGrid_Chessboard

Invoke.DetectCalibrationGrid_Chessboard

Detects a chessboard calibration grid on the image, and returns calibration points where 4 chessboard squares meet.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void DetectCalibrationGrid_Chessboard
(
	Avl.Image inImage,
	Optional<Avl.Region> inRoi,
	Avl.Size inBoardSize,
	bool inFastApproximate,
	List<Avl.AnnotatedPoint2D> outImageGrid
)

Parameters

Name Type Range Default Description
inImageAvl.ImageInput image.
inRoiAtl.Optional<Avl.Region>Range of pixels to be processed. Default value: atl::NIL.
inBoardSizeAvl.Size(Width: 0, Height: 0)Number of checkerboard squares in X and Y dimensions. Default value: (Width: 0, Height: 0).
inFastApproximateboolFalseFast filter execution, but result is approximate. Default value: False.
outImageGridSystem.Collections.Generic.List<Avl.AnnotatedPoint2D>Detected grid.

See also