Package org.opencv.objdetect
Class GridBoard
- java.lang.Object
- 
- org.opencv.objdetect.Board
- 
- org.opencv.objdetect.GridBoard
 
 
- 
 public class GridBoard extends Board Planar board with grid arrangement of markers More common type of board. All markers are placed in the same plane in a grid arrangement. The board image can be drawn using generateImage() method.
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedGridBoard(long addr)GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary)GridBoard constructorGridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary, Mat ids)GridBoard constructor
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GridBoard__fromPtr__(long addr)protected voidfinalize()SizegetGridSize()floatgetMarkerLength()floatgetMarkerSeparation()- 
Methods inherited from class org.opencv.objdetect.BoardgenerateImage, generateImage, generateImage, getDictionary, getIds, getNativeObjAddr, getObjPoints, getRightBottomCorner, matchImagePoints
 
- 
 
- 
- 
- 
Constructor Detail- 
GridBoardprotected GridBoard(long addr) 
 - 
GridBoardpublic GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary, Mat ids) GridBoard constructor- Parameters:
- size- number of markers in x and y directions
- markerLength- marker side length (normally in meters)
- markerSeparation- separation between two markers (same unit as markerLength)
- dictionary- dictionary of markers indicating the type of markers
- ids- set of marker ids in dictionary to use on board.
 
 - 
GridBoardpublic GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary) GridBoard constructor- Parameters:
- size- number of markers in x and y directions
- markerLength- marker side length (normally in meters)
- markerSeparation- separation between two markers (same unit as markerLength)
- dictionary- dictionary of markers indicating the type of markers
 
 
- 
 
-