http://www.emgu.com
Draw a ChArUco board
Namespace:
Emgu.CV.Aruco
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void Draw(
Size outSize,
IOutputArray img,
int margindSize = 0,
int borderBits = 1
)
Public Sub Draw (
outSize As Size,
img As IOutputArray,
Optional margindSize As Integer = 0,
Optional borderBits As Integer = 1
)
public:
void Draw(
Size outSize,
IOutputArray^ img,
int margindSize = 0,
int borderBits = 1
)
member Draw :
outSize : Size *
img : IOutputArray *
?margindSize : int *
?borderBits : int
(* Defaults:
let _margindSize = defaultArg margindSize 0
let _borderBits = defaultArg borderBits 1
*)
-> unit
Parameters
- 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. - margindSize (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