ルーチン説明 04-Image-Filters->基本_フレーム_差分 簡易フレーム間差分
import sensor, image, os, time
sensor.reset()
sensor.set_pixformat(sensor.RGB565)
sensor.set_framesize(sensor.QVGA)
sensor.skip_frames(time = 2000)
sensor.set_auto_whitebal(False)
clock = time.clock()
if not "temp" in os.listdir(): os.mkdir("temp")
print("About to save background image...")
sensor.skip_frames(time = 2000)
sensor.snapshot().save("temp/bg.bmp")
print("Saved background image - Now frame differencing!")
while(True):
clock.tick()
img = sensor.snapshot()
img.difference("temp/bg.bmp")
print(clock.fps())
Singtown Technology OpenMV
公式中国語ドキュメント機能説明: