Spiegazione di routine 20-Frame-Differencing->in_memory_basic_frame_differencing semplice differenza di frame
# 简单帧差分例程
#
# 此示例演示了如何在OpenMV Cam中使用帧差异。 它被称为基本帧差异,因为没有背景图像更新。
# 因此,随着时间的推移,背景图像可能会发生变化而导致问题。
import sensor, image, os, time
TRIGGER_THRESHOLD = 5
sensor.reset() # 复位并初始化传感器。
sensor.set_pixformat(sensor.RGB565) # or sensor.GRAYSCALE
#设置图像色彩格式,有RGB565色彩图和GRAYSCALE灰度图两种
sensor.set_framesize(sensor.QVGA) # or sensor.QQVGA (or others)
#设置图像像素大小
sensor.skip_frames(time = 2000) # 让新的设置生效。
sensor.set_auto_whitebal(False) # 关闭白平衡。
clock = time.clock() # 跟踪FPS帧率
# 从主帧缓冲区的RAM中取出以分配第二帧缓冲区。
# 帧缓冲区中的RAM比MicroPython堆中的RAM多得多。
# 但是,在执行此操作后,您的某些算法的RAM会少得多......
# 所以,请注意现在摆脱RAM问题要容易得多。
# 然而,帧差分不会占用帧缓冲区中的大量额外空间。
# 但是,如果你这样做,像AprilTags这样的东西会起作用,也可能不会起作用...
extra_fb = sensor.alloc_extra_fb(sensor.width(), sensor.height(), sensor.RGB565)
print("About to save background image...")
sensor.skip_frames(time = 2000) # 给用户一个时间来准备
extra_fb.replace(sensor.snapshot())
print("Saved background image - Now frame differencing!")
while(True):
clock.tick() # 追踪两个snapshots()之间经过的毫秒数.
img = sensor.snapshot() # 拍一张照片,返回图像
# 用 "abs(NEW-OLD)" 帧差替换图像。
img.difference(extra_fb)
hist = img.get_histogram()
# 下面的代码通过比较第99百分位值(例如,非离群值最大值与第90百分位值(例如非最大值)来工作。
# 两个值之间的差异将随着差异图像看起来像素变化而增大。
diff = hist.get_percentile(0.99).l_value() - hist.get_percentile(0.90).l_value()
triggered = diff > TRIGGER_THRESHOLD
print(clock.fps()) # 注意: 当连接电脑后,OpenMV会变成一半的速度。当不连接电脑,帧率会增加。
Spiegazione ufficiale della funzione del documento cinese di Singtown Technology OpenMV:
Spiegazione ufficiale della funzione del documento cinese di Singtown Technology OpenMV:
Spiegazione ufficiale della funzione del documento cinese di Singtown Technology OpenMV: