ArucoInvokeDrawPlanarBoard Method |
http://www.emgu.com
Draw a planar board.
Namespace:
Emgu.CV.Aruco
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void DrawPlanarBoard(
IBoard board,
Size outSize,
IOutputArray img,
int marginSize = 0,
int borderBits = 1
)
Public Shared Sub DrawPlanarBoard (
board As IBoard,
outSize As Size,
img As IOutputArray,
Optional marginSize As Integer = 0,
Optional borderBits As Integer = 1
)
public:
static void DrawPlanarBoard(
IBoard^ board,
Size outSize,
IOutputArray^ img,
int marginSize = 0,
int borderBits = 1
)
static member DrawPlanarBoard :
board : IBoard *
outSize : Size *
img : IOutputArray *
?marginSize : int *
?borderBits : int
(* Defaults:
let _marginSize = defaultArg marginSize 0
let _borderBits = defaultArg borderBits 1
*)
-> unit
Parameters
- board
- Type: Emgu.CV.ArucoIBoard
Layout of the board that will be drawn. The board should be planar, z coordinate is ignored - outSize
- Type: System.DrawingSize
Size of the output image in pixels. - img
- Type: Emgu.CVIOutputArray
Output image with the board. The size of this image will be outSize and the board will be on the center, keeping the board proportions. - marginSize (Optional)
- Type: SystemInt32
Minimum margins (in pixels) of the board in the output image - borderBits (Optional)
- Type: SystemInt32
Width of the marker borders.
See Also