例程讲解-06-gif录制动图

本例程为 06-Video_Recording-gif.py
本例程的目标是利用openmv录制动图。

# 录制动图例程
#
# 注意:您将需要SD卡来运行此示例。
#
# You can use your OpenMV Cam to record gif files. You can either feed the
# recorder object RGB565 frames or Grayscale frames. Use photo editing software
# like GIMP to compress and optimize the Gif before uploading it to the web.
# 你可以用你的OpenMV摄像头来记录gif文件。您可以提供记录器对象RGB565帧或灰度帧。
# 使用像GIMP这样的照片编辑软件来压缩和优化Gif,然后再上传到web。

import sensor
import time
import gif
import machine

sensor.reset()  # 初始化sensor
sensor.set_pixformat(sensor.RGB565)  # 设置图像色彩格式,有RGB565色彩图和GRAYSCALE灰度图两种
sensor.set_framesize(sensor.QQVGA)  # 设置图像像素大小 QQVGA (160x120)
sensor.skip_frames(time=2000)  # 让新的设置生效

led = machine.LED("LED_RED")

led.on()
g = gif.Gif("example.gif", loop=True)
#gif.Gif(filename, width=Auto, height=Auto, color=Auto, loop=True)创建一个gif对象,filename为保存gif动图的文件路径

clock = time.clock()  # Create a clock object to track the FPS.
for i in range(100):
    clock.tick()
    # clock.avg() 返回帧与帧之间的毫秒数,其中包含gif延迟
    g.add_frame(sensor.snapshot(), delay=int(clock.avg() / 10))  # centiseconds.
    #gif.add_frame(image, delay=10),向gif动图中添加图片,delay=10指每隔
    #10分秒添加一张图。
    print(clock.fps())

g.close()
led.off()

raise (Exception("Please reset the camera to see the new file."))

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

results matching ""

    No results matching ""