opencv-python 讀取同一目錄的多個檔案

Como0413發表於2019-02-18

import os

#匯入機器視覺的包

import cv2 as cv

imgs = []
# walk會返回3個引數,分別是路徑,目錄list,檔案list
for path, lists, frame in os.walk(檔案路徑):
    for f in frame:

        #讀取無中文路徑影像(1代表三通道的彩色圖)

        #img = cv.imread(path + "/" + f,1)
        #讀取中文路徑影像(1代表三通道的彩色圖)
        img = cv.imdecode(np.fromfile(path + "/" + f, dtype=np.uint8), 1)
        imgs.append(img)

相關文章