例程讲解06-Video-Recording->image_reader读取二进制视频
# 读取图片例程
#
# 注意:您将需要SD卡来运行此示例。
#
# 此示例显示如何使用图像读取器对象来重放OpenMV在Image Writer对象中保存
# 的用于测试机器视觉算法的快照。
import sensor, image, time
snapshot_source = False # Set to true once finished to pull data from sensor.
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QQVGA)
sensor.skip_frames(time = 2000)
clock = time.clock()
img_reader = None if snapshot_source else image.ImageReader("/stream.bin")
while(True):
clock.tick()
img = sensor.snapshot() if snapshot_source else img_reader.next_frame(copy_to_fb=True, loop=True)
# 在这里对图像进行机器视觉算法。
print(clock.fps())