import os import shutil def Traversal(filedir): file_list=[] for root,dirs,files in os.walk(filedir): for file in files: file_list.append(os.path.join(root,file)) for dir in dirs: Traversal(dir) return file_list def is_img(path): ext = os.path.splitext(path)[1] ext = ext.lower() if ext in ['.jpg','.png','.jpeg','.bmp']: return True else: return False def is_video(path): ext = os.path.splitext(path)[1] ext = ext.lower() if ext in ['.mp4','.flv','.avi','.mov','.mkv','.wmv','.rmvb','.mts']: return True else: return False def is_imgs(paths): tmp = [] for path in paths: if is_img(path): tmp.append(path) return tmp def is_videos(paths): tmp = [] for path in paths: if is_video(path): tmp.append(path) return tmp def writelog(path,log): f = open(path,'a+') f.write(log+'\n') f.close() def makedirs(path): if os.path.isdir(path): print(path,'existed') else: os.makedirs(path) print('makedir:',path) def clean_tempfiles(tmp_init=True): if os.path.isdir('./tmp'): shutil.rmtree('./tmp') if tmp_init: os.makedirs('./tmp') os.makedirs('./tmp/video2image') os.makedirs('./tmp/addmosaic_image') os.makedirs('./tmp/mosaic_crop') os.makedirs('./tmp/replace_mosaic') os.makedirs('./tmp/mosaic_mask') os.makedirs('./tmp/ROI_mask') os.makedirs('./tmp/ROI_mask_check') def file_init(opt): if not os.path.isdir(opt.result_dir): os.makedirs(opt.result_dir) print('makedir:',opt.result_dir) clean_tempfiles() def get_bar(percent,num = 25): bar = '[' for i in range(num): if i < round(percent/(100/num)): bar += '#' else: bar += '-' bar += ']' return bar+' '+str(round(percent,2))+'%'