想要实现把openMV返回的中心点坐标以数字的形式通过串口发送到STM 32 ,但接收到之后发现是乱码。通过查询发现openmv 返回blob.x() 为int 类型 想知道串口怎么写可以单独把blob.x()与blob.y()发送到stm32串口呢 谢谢
O
o64l 发布的帖子
-
openmv 与stm32通信乱码
-
二维码识别无反应
把例程中的二维码识别代码复制到IDE 发现只能识别例程中的二维码 生成的二维码却无法识别 代码如下
import sensor, image sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QQVGA) # can be QVGA on M7... sensor.skip_frames(30) sensor.set_auto_gain(False) # must turn this off to prevent image washout... while(True): img = sensor.snapshot() img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens. for code in img.find_datamatrices(): print(code)
几张照片如下 二维码是能用手机识别出来的,大家可以帮忙看下吗 谢谢
-
RE: 二维码识别
你好 我也是用二维码识别 例程中的代码复制到IDE里边 发现之恩你个识别例程中的二维码,其他的却识别不出来。
import sensor, image sensor.reset() sensor.set_pixformat(sensor.RGB565) sensor.set_framesize(sensor.QQVGA) # can be QVGA on M7... sensor.skip_frames(30) sensor.set_auto_gain(False) # must turn this off to prevent image washout... while(True): img = sensor.snapshot() img.lens_corr(1.8) # strength of 1.8 is good for the 2.8mm lens. for code in img.find_datamatrices(): print(code)
可以帮忙看一下吗 谢谢