http://www.emgu.com
Create a GridBoard object.
Namespace:
Emgu.CV.Aruco
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic GridBoard(
int markersX,
int markersY,
float markerLength,
float markerSeparation,
Dictionary dictionary,
int firstMarker = 0
)
Public Sub New (
markersX As Integer,
markersY As Integer,
markerLength As Single,
markerSeparation As Single,
dictionary As Dictionary,
Optional firstMarker As Integer = 0
)
public:
GridBoard(
int markersX,
int markersY,
float markerLength,
float markerSeparation,
Dictionary^ dictionary,
int firstMarker = 0
)
new :
markersX : int *
markersY : int *
markerLength : float32 *
markerSeparation : float32 *
dictionary : Dictionary *
?firstMarker : int
(* Defaults:
let _firstMarker = defaultArg firstMarker 0
*)
-> GridBoard
Parameters
- markersX
- Type: SystemInt32
number of markers in X direction - markersY
- Type: SystemInt32
number of markers in Y direction - markerLength
- Type: SystemSingle
marker side length (normally in meters) - markerSeparation
- Type: SystemSingle
separation between two markers (same unit than markerLenght) - dictionary
- Type: Emgu.CV.ArucoDictionary
dictionary of markers indicating the type of markers. The first markersX*markersY markers in the dictionary are used. - firstMarker (Optional)
- Type: SystemInt32
id of first marker in dictionary to use on board.
See Also