类 GridBoard
- java.lang.Object
-
- org.opencv.objdetect.Board
-
- org.opencv.objdetect.GridBoard
-
public class GridBoard extends Board
具有网格排列标记的平面棋盘,这是更常见的棋盘类型。所有标记都以网格排列方式放置在同一平面上。可以使用 generateImage() 方法绘制棋盘图像。
-
-
构造函数摘要
构造函数 修饰符 构造函数 描述 protected
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 void
finalize()
Size
getGridSize()
float
getMarkerLength()
float
getMarkerSeparation()
-
继承自类 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
- 指示标记类型的标记字典
-
-