摘要:
import hashlib import os import time from tqdm import tqdm def getmd5(filename): """ 获取文件 md5 码 :param filename: 文件路径 :return: 文件 md5 码 """ file_txt = 阅读全文
摘要:
import os import cv2 from glob import glob filePath = 'D:/b/' cap=os.listdir(filePath) for i in cap: cap = cv2.VideoCapture(filePath+i) s=cap.isOpened 阅读全文