我需要发布一个视频片段,我有一个叫做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)