如果你在文件夹里有很多视频,并且文件夹里还有文件夹,文件夹里的文件夹也有视频,怎么能逐个读取并且保存。。所以我写了个代码用了os,walk,这个可以遍历所有文件夹里的文件和文件夹
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import os import cv2 cut_frame = 250 # 多少帧截一次,自己设置就行 save_path = "C:\文献与资料\手持红外\图片" for root, dirs, files in os.walk(r "C:\文献与资料\手持红外" ): # 这里就填文件夹目录就可以了 for file in files: # 获取文件路径 if ( '.mp4' in file ): path = os.path.join(root, file ) video = cv2.VideoCapture(path) video_fps = int (video.get(cv2.CAP_PROP_FPS)) print (video_fps) current_frame = 0 while ( True ): ret, image = video.read() current_frame = current_frame + 1 if ret is False : video.release() break if current_frame % cut_frame = = 0 : # cv2.imwrite(save_path + '/' + file[:-4] + str(current_frame) + '.jpg', # image) # file[:-4]是去掉了".mp4"后缀名,这里我的命名格式是,视频文件名+当前帧数+.jpg,使用imwrite就不能有中文路径和中文文件名 cv2.imencode( '.jpg' , image)[ 1 ].tofile(save_path + '/' + file [: - 4 ] + str (current_frame) + '.jpg' ) #使用imencode就可以整个路径中可以包括中文,文件名也可以是中文 print ( '正在保存' + file + save_path + '/' + file [: - 4 ] + str (current_frame)) |
ps:下面看下python 遍历文件夹
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import os # 遍历文件夹 def walkFile( file ): for root, dirs, files in os.walk( file ): # root 表示当前正在访问的文件夹路径 # dirs 表示该文件夹下的子目录名list # files 表示该文件夹下的文件list # 遍历文件 for f in files: print (os.path.join(root, f)) # 遍历所有的文件夹 for d in dirs: print (os.path.join(root, d)) def main(): walkFile( "f:/ostest/" ) if __name__ = = '__main__' : main() |
总结
以上所述是小编给大家介绍的python使用openCV遍历文件夹里所有视频文件并保存成图片,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
原文链接:https://blog.csdn.net/weixin_43446161/article/details/103929236