例程讲解-05-snapshot保存图片

本例程为 05-Snapshot-snapshot.py
本例程的目标是使用save函数保存摄像头图片。
注意:因为openmv内存较小,需要外接SD卡才能保存图片哦。

# 保存图片例程
#
# 注意:您需要一张SD卡来运行这个例子
#
# 你可以使用你的OpenMV摄像头来保存图像文件

import sensor
import time
import machine

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

led = machine.LED("LED_BLUE")

start = time.ticks_ms()
while time.ticks_diff(time.ticks_ms(), start) < 3000:
    sensor.snapshot()
    led.toggle()

led.off()

img = sensor.snapshot()
img.save("example.jpg")  # or "example.bmp" (or others)

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

注意:保存的图片需要重启openmv后才能在SD卡中看到哦。

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

results matching ""

    No results matching ""