ルーチン説明-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."))