如何连接到其他设备,被连接设备有4pin线插槽?
S
sgyu
@sgyu
0
声望
3
楼层
628
资料浏览
0
粉丝
0
关注
sgyu 发布的帖子
-
示例代码,包装盒子上淘宝二维码识别不出来什么情况?
QRCode Example
This example shows the power of the OpenMV Cam to detect QR Codes
using lens correction (see the qrcodes_with_lens_corr.py script for higher performance).
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())