OpenCV  4.10.0
开源计算机视觉
正在加载...
正在搜索...
无匹配项
| 公有成员函数 | 所有成员列表
cv::QRCodeDetectorAruco 类参考

#include <opencv2/objdetect.hpp>

cv::QRCodeDetectorAruco 的协作图

struct  Params
 

公有成员函数

 QRCodeDetectorAruco ()
 
 QRCodeDetectorAruco (const QRCodeDetectorAruco::Params &params)
 基于 Aruco 算法的二维码检测器构造函数。请参见 cv::QRCodeDetectorAruco::Params.
 
const aruco::DetectorParametersgetArucoParameters () const
 Aruco 检测器参数用于搜索查找模式。
 
const QRCodeDetectorAruco::ParamsgetDetectorParameters () const
 检测器参数获取器。请参见 cv::QRCodeDetectorAruco::Params.
 
void setArucoParameters (const aruco::DetectorParameters &params)
 Aruco 检测器参数用于搜索查找模式。
 
QRCodeDetectorArucosetDetectorParameters (const QRCodeDetectorAruco::Params &params)
 检测器参数设置器。请参见 cv::QRCodeDetectorAruco::Params.
 
- 从 cv::GraphicalCodeDetector 继承的公有成员函数
 GraphicalCodeDetector ()
 
 GraphicalCodeDetector (const GraphicalCodeDetector &)=default
 
 GraphicalCodeDetector (GraphicalCodeDetector &&)=default
 
std::string decode (InputArray img, InputArray points, OutputArray straight_code=noArray()) const
 在图像中解码图形代码,一旦它被 detect() 方法找到。
 
bool decodeMulti (InputArray img, InputArray points, std::vector< std::string > &decoded_info, OutputArrayOfArrays straight_code=noArray()) const
 在图像中解码图形代码,一旦它被 detect() 方法找到。
 
bool detect (InputArray img, OutputArray points) const
 检测图像中的图形代码并返回包含代码的四边形。
 
std::string detectAndDecode (InputArray img, OutputArray points=noArray(), OutputArray straight_code=noArray()) const
 同时检测和解码图形代码。
 
bool detectAndDecodeMulti (InputArray img, std::vector< std::string > &decoded_info, OutputArray points=noArray(), OutputArrayOfArrays straight_code=noArray()) const
 同时检测和解码图形代码。
 
bool detectMulti (InputArray img, OutputArray points) const
 检测图像中的图形代码并返回包含代码的四边形向量。
 
GraphicalCodeDetectoroperator= (const GraphicalCodeDetector &)=default
 
GraphicalCodeDetectoroperator= (GraphicalCodeDetector &&)=default
 

其他继承的成员

- 从 cv::GraphicalCodeDetector 继承的受保护属性
Ptr< Impl > p
 

构造函数和析构函数文档

◆ QRCodeDetectorAruco() [1/2]

cv::QRCodeDetectorAruco::QRCodeDetectorAruco ( )
Python
cv.QRCodeDetectorAruco() -> <QRCodeDetectorAruco 对象>
cv.QRCodeDetectorAruco(params) -> <QRCodeDetectorAruco 对象>

◆ QRCodeDetectorAruco() [2/2]

cv::QRCodeDetectorAruco::QRCodeDetectorAruco ( const QRCodeDetectorAruco::Params params)
explicit
Python
cv.QRCodeDetectorAruco() -> <QRCodeDetectorAruco 对象>
cv.QRCodeDetectorAruco(params) -> <QRCodeDetectorAruco 对象>

基于 Aruco 算法的二维码检测器构造函数。请参见 cv::QRCodeDetectorAruco::Params.

成员函数文档

◆ getArucoParameters()

const aruco::DetectorParameters & cv::QRCodeDetectorAruco::getArucoParameters ( ) const
Python
cv.QRCodeDetectorAruco.getArucoParameters() -> retval

Aruco 检测器参数用于搜索查找模式。

◆ getDetectorParameters()

const QRCodeDetectorAruco::Params & cv::QRCodeDetectorAruco::getDetectorParameters ( ) const
Python
cv.QRCodeDetectorAruco.getDetectorParameters() -> retval

检测器参数获取器。请参见 cv::QRCodeDetectorAruco::Params.

◆ setArucoParameters()

void cv::QRCodeDetectorAruco::setArucoParameters ( const aruco::DetectorParameters params)
Python
cv.QRCodeDetectorAruco.setArucoParameters(params) -> None

Aruco 检测器参数用于搜索查找模式。

◆ setDetectorParameters()

QRCodeDetectorAruco & cv::QRCodeDetectorAruco::setDetectorParameters ( const QRCodeDetectorAruco::Params params)
Python
cv.QRCodeDetectorAruco.setDetectorParameters(params) -> retval

检测器参数设置器。请参见 cv::QRCodeDetectorAruco::Params.


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