limaoyue1
Results
1
comments of
limaoyue1
就是我在进行这一步的会,内存炸了,是为啥呢,随着图像的读取内存占用越来越高,然后就炸了 def read_imgs(img_list): frames = [] print('reading images...') for img_path in tqdm(img_list): frame = cv2.imread(img_path) frames.append(frame) return frames