ArucoInvokeDrawMarker Method |
http://www.emgu.com
Draw a canonical marker image.
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 DrawMarker(
Dictionary dict,
int id,
int sidePixels,
IOutputArray img,
int borderBits = 1
)
Public Shared Sub DrawMarker (
dict As Dictionary,
id As Integer,
sidePixels As Integer,
img As IOutputArray,
Optional borderBits As Integer = 1
)
public:
static void DrawMarker(
Dictionary^ dict,
int id,
int sidePixels,
IOutputArray^ img,
int borderBits = 1
)
static member DrawMarker :
dict : Dictionary *
id : int *
sidePixels : int *
img : IOutputArray *
?borderBits : int
(* Defaults:
let _borderBits = defaultArg borderBits 1
*)
-> unit
Parameters
- dict
- Type: Emgu.CV.ArucoDictionary
dictionary of markers indicating the type of markers - id
- Type: SystemInt32
identifier of the marker that will be returned. It has to be a valid id in the specified dictionary. - sidePixels
- Type: SystemInt32
size of the image in pixels - img
- Type: Emgu.CVIOutputArray
output image with the marker - borderBits (Optional)
- Type: SystemInt32
width of the marker border.
See Also