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

1qczuiv0  于 2023-01-06  发布在  Linux
关注(0)|答案(2)|浏览(215)

我正在与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`
pbpqsu0x

pbpqsu0x1#

首先,代码与OpenCV 4.0兼容,因此请确保您使用的是OpenCV 4.0。如果您使用的是OpenCV 4.0,您可能在eclipse中引用了不同版本的OpenCV路径。
对于解决方案,有两个步骤。

第一步

在终端中,输入 *pkg-config --cflags opencv 4 *。输出将类似于 I/usr/local/include/opencv 4/opencv。复制输出并将其粘贴到第一个链接中显示的位置。
https://drive.google.com/open?id=1WSBEOaSF6JJvOiUSI_kop8wnRaK8TOIt

步骤2

再次从终端键入 *pkg-config --libs opencv 4 *。输出将类似于 L/usr/local/lib。复制输出并将其粘贴到第二个链接中显示的位置。然后添加标题引用到库(-l)部分,如链接中所示。
https://drive.google.com/open?id=1VYJHNV10P8oj_pwaUh3GZJwWu8vDmUxA
这些步骤将解决您的问题。

3duebb1j

3duebb1j2#

在Linux OpenCV 4.* 构建 * 检测 * 第三方库的存在,使其使用捆绑的QUIRC用于cmake:- DBILD_QUIRC=打开-DQUIRC=打开
完整命令如下所示:

cmake       -D CMAKE_BUILD_TYPE=RELEASE \
            -D CMAKE_INSTALL_PREFIX=/usr/local/OpenCV47 \
            -D INSTALL_C_EXAMPLES=ON \
            -D WITH_TBB=ON \
            -D WITH_V4L=ON \
            -D WITH_OPENGL=ON \
            -D OPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules \
            -D BUILD_EXAMPLES=ON \
            -DBUILD_QUIRC=ON -DQUIRC=ON \
             ..

以上cmd为我工作,其他选项可以调整,以适应您的需要。--batcilla在这里输入代码

相关问题