OpenCV 4.10.0
开源计算机视觉
加载中...
搜索中...
无匹配项
公共成员函数 | 所有成员列表

具有网格排列标记的平面板。 更多...

#include <opencv2/objdetect/aruco_board.hpp>

cv::aruco::GridBoard 的协作图

公共成员函数

 GridBoard ()
 
 GridBoard (const Size &size, float markerLength, float markerSeparation, const Dictionary &dictionary, InputArray ids=noArray())
 GridBoard 构造函数。
 
Size getGridSize () const
 
float getMarkerLength () const
 
float getMarkerSeparation () const
 
- 从 cv::aruco::Board 继承的公共成员函数
 Board ()
 
 Board (InputArrayOfArrays objPoints, const Dictionary &dictionary, InputArray ids)
 通用 Board 构造函数。
 
void generateImage (Size outSize, OutputArray img, int marginSize=0, int borderBits=1) const
 绘制平面板。
 
const DictionarygetDictionary () const
 返回为此板使用的 Dictionary
 
const std::vector< int > & getIds () const
 板中标记标识符的向量(应与 objPoints 大小相同)。
 
const std::vector< std::vector< Point3f > > & getObjPoints () const
 返回板上所有标记角的对象点的数组。
 
const Point3fgetRightBottomCorner () const
 获取板的右下角坐标,在调用 create() 函数时设置。
 
void matchImagePoints (InputArrayOfArrays detectedCorners, InputArray detectedIds, OutputArray objPoints, OutputArray imgPoints) const
 给定板配置和一组检测到的标记,返回相应的图像点和对象点,可在 solvePnP() 中使用。
 

其他继承的成员

- 从 cv::aruco::Board 继承的受保护成员函数
 Board (const Ptr< Impl > &impl)
 
- 从 cv::aruco::Board 继承的受保护属性
Ptr< Impl > impl
 

详细描述

具有网格排列标记的平面板。

更常见的板类型。所有标记都以网格排列放置在同一平面上。可以使用 generateImage() 方法绘制板图像。

构造函数和析构函数文档

◆ GridBoard() [1/2]

cv::aruco::GridBoard::GridBoard ( const Size size,
float  markerLength,
float  markerSeparation,
const Dictionary dictionary,
InputArray  ids = noArray() 
)
Python
cv.aruco.GridBoard(size, markerLength, markerSeparation, dictionary[, ids]) -> <aruco_GridBoard 对象>

GridBoard 构造函数。

参数
sizex 和 y 方向上的标记数量
markerLength标记边长(通常以米为单位)
markerSeparation两个标记之间的间距(与 markerLength 相同单位)
dictionary指示标记类型的标记字典
ids要在板上使用的字典中的标记 ID 集。
以下是此函数的调用图

◆ GridBoard() [2/2]

cv::aruco::GridBoard::GridBoard ( )
Python
cv.aruco.GridBoard(size, markerLength, markerSeparation, dictionary[, ids]) -> <aruco_GridBoard 对象>

成员函数文档

◆ getGridSize()

Size cv::aruco::GridBoard::getGridSize ( ) const
Python
cv.aruco.GridBoard.getGridSize() -> retval

◆ getMarkerLength()

float cv::aruco::GridBoard::getMarkerLength ( ) const
Python
cv.aruco.GridBoard.getMarkerLength() -> retval

◆ getMarkerSeparation()

float cv::aruco::GridBoard::getMarkerSeparation ( ) const
Python
cv.aruco.GridBoard.getMarkerSeparation() -> retval

此类的文档是从以下文件生成的