Click or drag to resize

ArucoInvokeGetBoardObjectAndImagePoints Method

http://www.emgu.com
Given a board configuration and a set of detected markers, returns the corresponding image points and object points to call solvePnP.

Namespace:  Emgu.CV.Aruco
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void GetBoardObjectAndImagePoints(
	IBoard board,
	IInputArray detectedCorners,
	IInputArray detectedIds,
	IOutputArray objPoints,
	IOutputArray imgPoints
)

Parameters

board
Type: Emgu.CV.ArucoIBoard
Marker board layout.
detectedCorners
Type: Emgu.CVIInputArray
List of detected marker corners of the board.
detectedIds
Type: Emgu.CVIInputArray
List of identifiers for each marker.
objPoints
Type: Emgu.CVIOutputArray
Vector of vectors of board marker points in the board coordinate space.
imgPoints
Type: Emgu.CVIOutputArray
Vector of vectors of the projections of board marker corner points.
See Also