Back to Aurora Vision Library website

You are here: Start » Function Reference » Computer Vision » Camera Calibration » IsCircleGridPresent_Deprecated

IsCircleGridPresent_Deprecated


Header: AVL.h
Namespace: avl
Module: Calibration

Detects a circle board on an image. Returns the center of each circle.

Applications: Preparation of data required for creating image undistortion map.

Syntax

void avl::IsCircleGridPresent_Deprecated
(
	const avl::Image& inImage,
	int inBoardColumns,
	int inBoardRows,
	bool inSymmetricPattern,
	atl::Conditional<atl::Array<avl::Point2D> >& outImageGridPoints
)

Parameters

Name Type Range Default Description
Input value inImage const Image& Input image
Input value inBoardColumns int 4 - Number of ranks (columns) of the chessboard
Input value inBoardRows int 4 - Number of files (rows) of the chessboard
Input value inSymmetricPattern bool Board has symmetric pattern.
Output value outImageGridPoints Conditional<Array<Point2D> >& Approximated position of grid points

Errors

List of possible exceptions:

Error type Description
DomainError Empty image in cvFindCirclesGrid.
DomainError inImage must have pixels of UInt8 type in cvFindCirclesGrid.