/// <param name="markersX">number of markers in X direction</param>
/// <param name="markersY">number of markers in Y direction</param>
/// <param name="markerLength">marker side length (normally in meters)</param>
/// <param name="markerSeparation">separation between two markers (same unit than markerLenght)</param>
/// <param name="dictionary">dictionary of markers indicating the type of markers. The first markersX*markersY markers in the dictionary are used.</param>
/// <param name="firstMarker"> id of first marker in dictionary to use on board.</param>
/// <param name="markersX">Number of markers in X direction</param>
/// <param name="markersY">Number of markers in Y direction</param>
/// <param name="markerLength">Marker side length (normally in meters)</param>
/// <param name="markerSeparation">Separation between two markers (same unit than markerLenght)</param>
/// <param name="dictionary">Dictionary of markers indicating the type of markers. The first markersX*markersY markers in the dictionary are used.</param>
/// <param name="ids">set of marker ids in dictionary to use on board.</param>
publicGridBoard(
intmarkersX,
intmarkersY,
@ -60,22 +60,6 @@ namespace Emgu.CV.Aruco
}
}
/*
/// <summary>
/// Draw a GridBoard.
/// </summary>
/// <param name="outSize">size of the output image in pixels.</param>
/// <param name="img">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.</param>
/// <param name="marginSize">minimum margins (in pixels) of the board in the output image</param>
/// <param name="borderBits">width of the marker borders.</param>
/// <param name="outSize">size of the output image in pixels.</param>
/// <param name="img">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.</param>
/// <param name="margindSize">minimum margins (in pixels) of the board in the output image</param>
/// <param name="borderBits">width of the marker borders.</param>