我需要发布一个视频剪辑,我有一种称为 process_image 的方法,它给了我一些 heat_map,它们是 720x1280 二进制 numpy 数组。
这是我将其初始化为全 0 的方法。img 大小为 720x1280。
heatmap = np.zeros_like(img[:,:,0])
假设我想平均过去 2 帧的热图:热图(当前)+ 2/3 热图(最后一帧)+ 1/3 热图(2 帧前)。我应该如何存储和加载它?
def process_image(img):
heat_map = another_method(img)
return heat_map
clip = moviepy.editor.VideoFileClip.fl_image(process_image)