tensorflow檢視自己的圖片資料報錯UnicodeEncodeError
阿新 • • 發佈:2019-01-25
在Spyder中想要用自己的圖片資料進行訓練時,tf.image.decode_jpeg(png就是tf.image.decode_png)解碼後,想要看下圖片,結果報錯:
UnicodeEncodeError: 'utf-8' codec can't encode character '\udcd5' in position 1892: surrogates not allowed
原本的程式如下:
import tensorflow as tf
import matplotlib.pyplot as plt
test_file=tf.read_file('F:\\圖片資料\\girl_1.jpg' )
test_image=tf.image.decode_jpeg(test_file,channels=3)
sess = tf.Session()
sess.run(tf.global_variables_initializer())
img=sess.run((test_image))
plt.imshow(img)
自己瞎搞了半天,終於試出來了,罪魁禍首在這!!
test_file=tf.read_file('F:\\圖片資料\\girl_1.jpg')
貌似read_file不支援中文路徑,去掉中文的就ok了
test_file=tf.read_file('F:\\girl_1.jpg' )
因為用的是Spyder,所以圖片直接就出來了。在idle中試了下,圖片沒有直接出來,而是儲存到記憶體地址中了。我也沒去試怎麼讓它顯示出來,嘛,畢竟一般都不會用idle的~