1、opencv最快,可能快几倍
2、moviepy.editor 的 VideoFileClip 慢点
3、skvideo.io 慢点
测的方法:
t = time.time()
clip = VideoFileClip(dir_originalclip, target_resolution=(256, None), resize_algorithm='bilinear')
t = time.time()-t
print t
1、opencv最快,可能快几倍
2、moviepy.editor 的 VideoFileClip 慢点
3、skvideo.io 慢点
测的方法:
t = time.time()
clip = VideoFileClip(dir_originalclip, target_resolution=(256, None), resize_algorithm='bilinear')
t = time.time()-t
print t
本文标题:video tasks的几种数据读取方法
本文链接:https://www.haomeiwen.com/subject/cftriftx.html
网友评论