GithubHelp home page GithubHelp logo

Comments (2)

yhxiong avatar yhxiong commented on June 9, 2024

即便用cv读取二维码文件,也获取不了二维码指向的链接。
比如:
qrimage='../amazing-qr-master/huiweixinshoukuan.png'

读取图像文件,这一步显示图片都是正常的数据,

img = cv2.imread(qrimage)
但下面这句没有结果!!!
results = reader.decode_array(img)
image

from pyzxing.

yhxiong avatar yhxiong commented on June 9, 2024

基本上找到原因了,是cv2.imread不支持中文的原因,因为result1的前面有中文,所以出错。用下面这段代码替代就行。

qrimage='C:/Users/xyh/测试 成功/vscode/QRcode/amazing-qr-master/huiweixinshoukuan.png'
qrim=cv2.imdecode(np.fromfile(qrimage, dtype=np.uint8),-1)
image = cv2.cvtColor(qrim, cv2.COLOR_BGR2RGB)
results = reader.decode_array(image)

from pyzxing.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.