优微视开发者社区

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 1005|回复: 0

用侦侦拍相机识别二维码

[复制链接]

26

主题

26

帖子

109

积分

版主

Rank: 7Rank: 7Rank: 7

积分
109
发表于 2023-5-12 10:57:08 | 显示全部楼层 |阅读模式
import image
import sensor
import ai

sensor.reset()

def loop():
    img = sensor.snapshot()

    for code in img.find_qrcodes() :
        x = code.x()
        y = code.y()
        w = code.w()
        h = code.h()
        rc = code.rect()
        img.draw_rectangle(rc, color=(255,0,0), thickness=4)
        print(x,y,w,h)
        print(rc)

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Youvtec Inc. ( 粤ICP备15097825号-1 )

GMT+8, 2024-11-1 09:27 , Processed in 0.112909 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表