1. 程式人生 > >tensorflow讀不出圖片,出現'utf-8' codec can't decode..錯誤

tensorflow讀不出圖片,出現'utf-8' codec can't decode..錯誤

首先我試了《實戰Google深度學習框架》這本書,結果圖片讀不出來,上網隨便找了個簡單的程式讀,還是讀不出來,我就查資料,執行以下程式

import importlib
importlib.reload(sys)

然後簡單的搞定了,但書裡的

image_raw_data = tf.gfile.FastGFile('H:/a_tf/timg.jpg','r').read()

還是報錯,後來發現是要把’r’變為’rb’,完美解決問題。