1. 程式人生 > >快速理解tf.strided_slice函式

快速理解tf.strided_slice函式

最近在處理遙感影象的時候要用到tensorflow的tf.strided_slice函式,下面是我的理解:

附檢驗程式碼:

  1. import tensorflow as tf   
  2. data = [[[111], [222]],   
  3. [[333], [444]],   
  4. [[555], [666]]]   
  5. x = tf.strided_slice(data,[0,0,0],[1,1,1])   
  6. with tf.Session() as sess:   
  7.        print(sess.run(x)) 
更好的文字理解可以參考點選開啟連結