私信  •  关注

attwad

attwad 最近创建的主题
attwad 最近回复了
14 年前
回复了 attwad 创建的主题 » 在Python中将png文件转换为动画gif

opencv ,

#load your frames
frames = ...
#create a video writer
writer = cvCreateVideoWriter(filename, -1, fps, frame_size, is_color=1)
#and write your frames in a loop if you want
cvWriteFrame(writer, frames[i])