画像を読み込む関数を作成し,ディレクトリ内の画像を読み込んでfilename名と画像listを返すようにしました.
UnboundLocalError: local variable 'files' referenced before assignmentが出てしまい,原因と解決方法がわかりません.
ご教授をお願い致します.
def
1 imglist=[] 2 3 exclude_prefixes=('_','.') 4 5 for root,dirs,files in os.walk(inputpath): 6 dirs[:]=[dir for dir in dirs if dir.startswith(exclude_prefixes)] 7 files[:]=[file for file in files if not file.startswith(exclude_prefixes)] 8 for fn in sorted(files): 9 bn,ext=os.path.splitext(fn) 10 if ext not in [".bmp",".BMP",".jpg",".JPG",".jpeg",".JPEG",".png",".PNG"]: 11 continue 12 13 filename=os.path.join(root,fn) 14 15 if type_color=='Color': 16 testimage=cv2.imread(filename,cv2.IMREAD_COLOR) 17 height,width=testimage.shape[:2] 18 testimage=cv2.resize(testimage,(imagesize,imagesize),interpolation=cv2.INTER_AREA) 19 testimage=np.asarray(testimage,dtype=np.float64) 20 testimage=testimage[:,:,::-1] 21 22 elif type_color=='Gray': 23 testimage=cv2.imread(filename,cv2.IMREAD_GRAYSCALE) 24 height,width=testimage.shape[:2] 25 testimage=cv2.resize(testimage,(imagesize,imagesize),interpolation=cv2.INTER_AREA) 26 testimage=np.asarray([testimage],dtype=np.float64) 27 testimage=np.asarray(testimage,dtype=np.float64).reshape((imagesize,imagesize,1)) 28 29 imglist.append(testimage) 30 imgsdata=np.asarray(imglist,dtype=np.float32) 31 32 return imgsdata,sorted(files) 33 34 35#画像の読み込み 36image_train,image_train_filenames=load_images('/content/drive/My Drive/reso/images/train',512,'Gray') 37image_test,image_test_filenames=load_images('/content/drive/My Drive/reso/imagse/test',512,'Gray') 38 39UnboundLocalError Traceback (most recent call last) 40<ipython-input-96-1224aca6d0ba> in <module>() 41 1 #画像の読み込み 42 2 image_train,image_train_filenames=load_images('/content/drive/My Drive/reso/images/train',512,'Gray') 43----> 3 image_test,image_test_filenames=load_images('/content/drive/My Drive/reso/imagse/test',512,'Gray') 44 45<ipython-input-91-ad1e9c8b4772> in load_images(inputpath, imagesize, type_color) 46 31 imgsdata=np.asarray(imglist,dtype=np.float32) 47 32 48---> 33 return imgsdata,sorted(files) 49 50UnboundLocalError: local variable 'files' referenced before assignment 51コード 52```
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/08 21:25