qrcodes 您所在的位置:网站首页 电脑如何识别二维码教程 qrcodes

qrcodes

2024-07-09 04:59| 来源: 网络整理| 查看: 265

例程讲解16-Codes->qrcodes_with_lens_corr二维码例程 视频教程15 - 扫码识别:https://singtown.com/learn/50017/ # 二维码例程 # # 这个例子展示了OpenMV Cam使用镜头校正来检测QR码的功能(请参阅qrcodes_with_lens_corr.py脚本以获得更高的性能)。 import sensor, image, time sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QVGA) sensor.skip_frames(time = 2000) sensor.set_auto_gain(False) # must turn this off to prevent image washout... clock = time.clock() while(True): clock.tick() img = sensor.snapshot() img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens. for code in img.find_qrcodes(): img.draw_rectangle(code.rect(), color = (255, 0, 0)) print(code) print(clock.fps())

星瞳科技OpenMV官方中文文档函数讲解:



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有