limaoyue1

Results 1 issues of limaoyue1

def read_imgs(img_list): # 创建一个空列表用于存放读取的图片 frames = [] # 打印提示信息 print('reading images...') # 遍历图片路径列表 for img_path in tqdm(img_list): # 使用 OpenCV 的 imread 函数读取图片 frame = cv2.imread(img_path) # 将读取的图片添加到 frames 列表中...