类 GridBoard
- java.lang.Object
-
- org.opencv.objdetect.Board
-
- org.opencv.objdetect.GridBoard
-
public class GridBoard extends Board
带有标记网格排列的平面板 更常见的板类型。所有标记都放置在同一平面上,呈网格排列。板图像可以使用 generateImage() 方法绘制。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 保护GridBoard(long addr)GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary)GridBoard 构造函数GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary, Mat ids)GridBoard 构造函数
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static GridBoard__fromPtr__(long addr)protected voidfinalize()SizegetGridSize()floatgetMarkerLength()floatgetMarkerSeparation()-
从类继承的方法 org.opencv.objdetect.Board
generateImage, generateImage, generateImage, getDictionary, getIds, getNativeObjAddr, getObjPoints, getRightBottomCorner, matchImagePoints
-
-
-
-
构造函数详细信息
-
GridBoard
protected GridBoard(long addr)
-
GridBoard
public GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary, Mat ids)
GridBoard 构造函数- 参数
size- x 和 y 方向上标记的数量markerLength- 标记边长(通常以米为单位)markerSeparation- 两个标记之间的间距(与 markerLength 相同的单位)dictionary- 标记字典,指示标记的类型ids- 要在板上使用的字典中的标记 id 集。
-
GridBoard
public GridBoard(Size size, float markerLength, float markerSeparation, Dictionary dictionary)
GridBoard 构造函数- 参数
size- x 和 y 方向上标记的数量markerLength- 标记边长(通常以米为单位)markerSeparation- 两个标记之间的间距(与 markerLength 相同的单位)dictionary- 标记字典,指示标记的类型
-
-