gpt4 book ai didi

c++ - 如何在Linux上使用C++ opencv库解码QRCODE?

转载 作者:行者123 更新时间:2023-12-02 10:38:46 38 4
gpt4 key购买 nike

我正在使用opencv c++库对Qrcode进行解码。在这里,我给出了来自以下网站的示例测试代码:https://www.learnopencv.com/opencv-qr-code-scanner-c-and-python/

当我编译此测试程序时,出现以下错误:

test.cc: In function ‘int main(int, char**)’:
test.cc:29:3: error: ‘QRCodeDetector’ was not declared in this scope
QRCodeDetector qrDecoder = QRCodeDetector::QRCodeDetector();
^~~~~~~~~~~~~~
test.cc:33:22: error: ‘qrDecoder’ was not declared in this scope
std::string data = qrDecoder.detectAndDecode(inputImage, bbox, rectifiedImage)

如何解决这个错误?
test.cc:
//https://www.learnopencv.com/opencv-qr-code-scanner-c-and-python/
#include <opencv2/objdetect.hpp>
#include <opencv2/imgcodecs.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>

using namespace cv;
using namespace std;

void display(Mat &im, Mat &bbox)
{
int n = bbox.rows;
for(int i = 0 ; i < n ; i++)
{
line(im, Point2i(bbox.at<float>(i,0),bbox.at<float>(i,1)), Point2i(bbox.at<float>((i+1) % n,0), bbox.at<float>((i+1) % n,1)), Scalar(255,0,0), 3);
}
imshow("Result", im);
}

int main(int argc, char* argv[])
{
// Read image
Mat inputImage;

inputImage = imread(argv[1]);

QRCodeDetector qrDecoder = QRCodeDetector::QRCodeDetector();

Mat bbox, rectifiedImage;

std::string data = qrDecoder.detectAndDecode(inputImage, bbox, rectifiedImage);
if(data.length()>0)
{
cout << "Decoded Data : " << data << endl;

display(inputImage, bbox);
rectifiedImage.convertTo(rectifiedImage, CV_8UC3);
imshow("Rectified QRCode", rectifiedImage);

waitKey(0);
}
else
cout << "QR Code not detected" << endl;
}

//compile
g++ test.cc -o test `pkg-config opencv --cflags --libs`

最佳答案

首先,代码与OpenCV 4.0兼容,因此请确保您使用的是OpenCV 4.0。如果您使用的是OpenCV 4.0,则可能在eclipse中引用了不同版本的OpenCV路径。

解决方案有两个步骤。

步骤1

在终端中,输入pkg-config --cflags opencv4。输出将类似于I / usr / local / include / opencv4 / opencv。复制输出并将其粘贴到第一个链接中显示的位置。

https://drive.google.com/open?id=1WSBEOaSF6JJvOiUSI_kop8wnRaK8TOIt

步骤2

再次从终端键入pkg-config --libs opencv4。输出将类似于L / usr / local / lib。复制输出并将其粘贴到第二个链接中显示的位置。比在链接中所示的Libraries(-l)部分添加 header 引用。

https://drive.google.com/open?id=1VYJHNV10P8oj_pwaUh3GZJwWu8vDmUxA

此步骤将解决您的问题。

关于c++ - 如何在Linux上使用C++ opencv库解码QRCODE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56368035/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com