我在Google驱动器中有一个包含300张图像的文件夹,我需要阅读它们。我是这样单独做的:
path = '/content/drive/My Drive/Unaerp/5º Ano/1º Semestre/Proces. Sinais e Imagem/Final/frutas_dataset/'
img1 = cv.imread(path + '001.bmp')
对于300张图片,我的教授说要使用For
循环。我该怎么办?
我尝试使用
for i in range (0,300):
但是没有用,有人知道如何提供帮助吗?