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

时间:2019-05-29 20:26:59

标签: c++ linux opencv qr-code

我正在使用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`

1 个答案:

答案 0 :(得分:0)

首先,代码与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

Steps2

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

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

此步骤将解决您的问题。